1 //
2 // Copyright (C) 2013 The Android Open Source Project
3 //
4 // Licensed under the Apache License, Version 2.0 (the "License");
5 // you may not use this file except in compliance with the License.
6 // You may obtain a copy of the License at
7 //
8 // http://www.apache.org/licenses/LICENSE-2.0
9 //
10 // Unless required by applicable law or agreed to in writing, software
11 // distributed under the License is distributed on an "AS IS" BASIS,
12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 // See the License for the specific language governing permissions and
14 // limitations under the License.
15 //
16
17 #include "shill/ppp_device_factory.h"
18
19 #include "shill/ppp_device.h"
20
21 using std::string;
22
23 namespace shill {
24
25 namespace {
26
27 base::LazyInstance<PPPDeviceFactory> g_ppp_device_factory
28 = LAZY_INSTANCE_INITIALIZER;
29
30 } // namespace
31
PPPDeviceFactory()32 PPPDeviceFactory::PPPDeviceFactory() {}
~PPPDeviceFactory()33 PPPDeviceFactory::~PPPDeviceFactory() {}
34
GetInstance()35 PPPDeviceFactory* PPPDeviceFactory::GetInstance() {
36 return g_ppp_device_factory.Pointer();
37 }
38
CreatePPPDevice(ControlInterface * control,EventDispatcher * dispatcher,Metrics * metrics,Manager * manager,const string & link_name,int interface_index)39 PPPDevice* PPPDeviceFactory::CreatePPPDevice(
40 ControlInterface* control,
41 EventDispatcher* dispatcher,
42 Metrics* metrics,
43 Manager* manager,
44 const string& link_name,
45 int interface_index) {
46 return new PPPDevice(control, dispatcher, metrics, manager, link_name,
47 interface_index);
48 }
49
50 } // namespace shill
51