blob: 6e421683792540d882359e6ac0b26a020bb5e63b [file] [log] [blame]
Peter Qiuc0beca52015-09-03 11:25:46 -07001//
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//
mukesh agrawalf407d592013-07-31 11:37:57 -070016
17#include "shill/ppp_device_factory.h"
18
19#include "shill/ppp_device.h"
20
21using std::string;
22
23namespace shill {
24
25namespace {
26
27base::LazyInstance<PPPDeviceFactory> g_ppp_device_factory
28 = LAZY_INSTANCE_INITIALIZER;
29
30} // namespace
31
32PPPDeviceFactory::PPPDeviceFactory() {}
33PPPDeviceFactory::~PPPDeviceFactory() {}
34
Paul Stewart1a212a62015-06-16 13:13:10 -070035PPPDeviceFactory* PPPDeviceFactory::GetInstance() {
mukesh agrawalf407d592013-07-31 11:37:57 -070036 return g_ppp_device_factory.Pointer();
37}
38
Paul Stewart1a212a62015-06-16 13:13:10 -070039PPPDevice* PPPDeviceFactory::CreatePPPDevice(
40 ControlInterface* control,
41 EventDispatcher* dispatcher,
42 Metrics* metrics,
43 Manager* manager,
44 const string& link_name,
mukesh agrawalf407d592013-07-31 11:37:57 -070045 int interface_index) {
46 return new PPPDevice(control, dispatcher, metrics, manager, link_name,
47 interface_index);
48}
49
50} // namespace shill