blob: 1b88c37a8db2c2094dd7268e2ec2cd2e2e091aa4 [file] [log] [blame]
Paul Stewartf65320c2011-10-13 14:34:52 -07001// Copyright (c) 2011 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.h"
6
Paul Stewartf65320c2011-10-13 14:34:52 -07007#include <string>
Alex Vakulenkoa41ab512014-07-23 14:24:23 -07008#include <vector>
Paul Stewartf65320c2011-10-13 14:34:52 -07009
Peter Qiu8d6b5972014-10-28 15:33:34 -070010#include "shill/net/ip_address.h"
Paul Stewartf65320c2011-10-13 14:34:52 -070011
12using std::string;
13using std::vector;
14
15namespace shill {
16
17MockDNSClient::MockDNSClient()
Ben Chancc225ef2014-09-30 13:26:51 -070018 : DNSClient(IPAddress::kFamilyIPv4, "", vector<string>(), 0, nullptr,
Eric Shienbrood3e20a232012-02-16 11:35:56 -050019 ClientCallback()) {}
Paul Stewartf65320c2011-10-13 14:34:52 -070020
21MockDNSClient::~MockDNSClient() {}
22
23} // namespace shill