blob: 342249cd61d49fbe0adceb0afedefd6f0cfbfb8d [file] [log] [blame]
Prathmesh Prabhu3e452f82013-04-10 16:31:44 -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_dns_client_factory.h"
6
7namespace shill {
8
9namespace {
10base::LazyInstance<MockDNSClientFactory> g_mock_dns_client_factory
11 = LAZY_INSTANCE_INITIALIZER;
12} // namespace
13
14MockDNSClientFactory::MockDNSClientFactory() {}
15MockDNSClientFactory::~MockDNSClientFactory() {}
16
17MockDNSClientFactory *MockDNSClientFactory::GetInstance() {
18 return g_mock_dns_client_factory.Pointer();
19}
20
21} // namespace shill