blob: 47a8910079b29637838819472808af66419ece55 [file] [log] [blame]
mukesh agrawalf407d592013-07-31 11:37:57 -07001// Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "shill/mock_ppp_device_factory.h"
6
7namespace shill {
8
9namespace {
10
11base::LazyInstance<MockPPPDeviceFactory> g_mock_ppp_device_factory
12 = LAZY_INSTANCE_INITIALIZER;
13
14} // namespace
15
16MockPPPDeviceFactory::MockPPPDeviceFactory() {}
17MockPPPDeviceFactory::~MockPPPDeviceFactory() {}
18
Paul Stewart1e006c62015-06-16 12:29:06 -070019MockPPPDeviceFactory* MockPPPDeviceFactory::GetInstance() {
mukesh agrawalf407d592013-07-31 11:37:57 -070020 return g_mock_ppp_device_factory.Pointer();
21}
22
23} // namespace shill