blob: a70d5779f76b9a81694b3f223f03605cf3d90788 [file] [log] [blame]
// Copyright 2018 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "shill/mock_dns_client_factory.h"
namespace shill {
MockDnsClientFactory::MockDnsClientFactory() {}
MockDnsClientFactory::~MockDnsClientFactory() {}
MockDnsClientFactory* MockDnsClientFactory::GetInstance() {
static base::NoDestructor<MockDnsClientFactory> instance;
testing::Mock::AllowLeak(instance.get());
return instance.get();
}
} // namespace shill