Paul Stewart | f65320c | 2011-10-13 14:34:52 -0700 | [diff] [blame] | 1 | // 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 | |
| 7 | #include <vector> |
| 8 | #include <string> |
| 9 | |
| 10 | #include "shill/ip_address.h" |
| 11 | |
| 12 | using std::string; |
| 13 | using std::vector; |
| 14 | |
| 15 | namespace shill { |
| 16 | |
| 17 | MockDNSClient::MockDNSClient() |
| 18 | : DNSClient(IPAddress::kFamilyIPv4, "", vector<string>(), 0, NULL, NULL) {} |
| 19 | |
| 20 | MockDNSClient::~MockDNSClient() {} |
| 21 | |
| 22 | } // namespace shill |