blob: 9f046250c5e72fb7f47e05161d9d71d98068186e [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
19MockPPPDeviceFactory *MockPPPDeviceFactory::GetInstance() {
20 return g_mock_ppp_device_factory.Pointer();
21}
22
23} // namespace shill