Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2199)

Unified Diff: chrome/browser/net/dns_probe_service_unittest.cc

Issue 2567623003: Make ERR_ICANN_NAME_COLLISION work for async DNS resolver. (Closed)
Patch Set: address Matt's comments Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/net/dns_probe_runner_unittest.cc ('k') | chrome/browser/net/dns_probe_test_util.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/net/dns_probe_service_unittest.cc
diff --git a/chrome/browser/net/dns_probe_service_unittest.cc b/chrome/browser/net/dns_probe_service_unittest.cc
index d18c261c66469012a877a9dc6bc298a2884e655b..26e7fea1fb21f3919ce1a0f7d9fcd637e7bd7c20 100644
--- a/chrome/browser/net/dns_probe_service_unittest.cc
+++ b/chrome/browser/net/dns_probe_service_unittest.cc
@@ -43,16 +43,16 @@ class DnsProbeServiceTest : public testing::Test {
}
protected:
- void SetRules(MockDnsClientRule::Result system_query_result,
- MockDnsClientRule::Result public_query_result) {
+ void SetRules(MockDnsClientRule::ResultType system_query_result,
+ MockDnsClientRule::ResultType public_query_result) {
service_.SetSystemClientForTesting(
CreateMockDnsClientForProbes(system_query_result));
service_.SetPublicClientForTesting(
CreateMockDnsClientForProbes(public_query_result));
}
- void RunTest(MockDnsClientRule::Result system_query_result,
- MockDnsClientRule::Result public_query_result,
+ void RunTest(MockDnsClientRule::ResultType system_query_result,
+ MockDnsClientRule::ResultType public_query_result,
DnsProbeStatus expected_result) {
Reset();
SetRules(system_query_result, public_query_result);
« no previous file with comments | « chrome/browser/net/dns_probe_runner_unittest.cc ('k') | chrome/browser/net/dns_probe_test_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698