[email protected] | 2ea1efe | 2013-07-17 05:23:13 | [diff] [blame] | 1 | // Copyright 2013 The Chromium 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 | #ifndef CHROME_BROWSER_NET_DNS_PROBE_TEST_UTIL_H_ |
| 6 | #define CHROME_BROWSER_NET_DNS_PROBE_TEST_UTIL_H_ |
| 7 | |
dcheng | 4e7c042 | 2016-04-14 00:59:05 | [diff] [blame] | 8 | #include <memory> |
| 9 | |
[email protected] | 2ea1efe | 2013-07-17 05:23:13 | [diff] [blame] | 10 | #include "net/dns/dns_client.h" |
| 11 | #include "net/dns/dns_test_util.h" |
| 12 | |
| 13 | namespace chrome_browser_net { |
| 14 | |
| 15 | // Creates a mock DNS client with a single rule for the known-good query |
eroman | 1efc237c | 2016-12-14 00:00:45 | [diff] [blame] | 16 | // (currently google.com) that returns |result| for A queries. |
dcheng | 4e7c042 | 2016-04-14 00:59:05 | [diff] [blame] | 17 | std::unique_ptr<net::DnsClient> CreateMockDnsClientForProbes( |
eroman | 1efc237c | 2016-12-14 00:00:45 | [diff] [blame] | 18 | net::MockDnsClientRule::ResultType result); |
[email protected] | 2ea1efe | 2013-07-17 05:23:13 | [diff] [blame] | 19 | |
| 20 | } // namespace chrome_browser_net |
| 21 | |
| 22 | #endif // CHROME_BROWSER_NET_DNS_PROBE_TEST_UTIL_H_ |