blob: b5eb7a49b8ee9be6f0719f1b270ada302ec1744b [file] [log] [blame]
Peter Qiubf8e36c2014-12-03 22:59:45 -08001// Copyright 2014 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 "apmanager/mock_dhcp_server_factory.h"
6
7namespace apmanager {
8
9namespace {
10base::LazyInstance<MockDHCPServerFactory> g_mock_dhcp_server_factory
11 = LAZY_INSTANCE_INITIALIZER;
12} // namespace
13
14MockDHCPServerFactory::MockDHCPServerFactory() {}
15MockDHCPServerFactory::~MockDHCPServerFactory() {}
16
17MockDHCPServerFactory* MockDHCPServerFactory::GetInstance() {
18 return g_mock_dhcp_server_factory.Pointer();
19}
20
21} // namespace apmanager