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

Unified Diff: components/data_reduction_proxy/core/browser/data_reduction_proxy_config_unittest.cc

Issue 2967993002: DRP: Make secure proxy check URL a DRP param (Closed)
Patch Set: megjablon comment Created 3 years, 5 months 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
Index: components/data_reduction_proxy/core/browser/data_reduction_proxy_config_unittest.cc
diff --git a/components/data_reduction_proxy/core/browser/data_reduction_proxy_config_unittest.cc b/components/data_reduction_proxy/core/browser/data_reduction_proxy_config_unittest.cc
index 8dc44167243f06fa191cc615a4ada82b53f56105..6789bb452966fa2d4f527dab824b52fea8cd9b04 100644
--- a/components/data_reduction_proxy/core/browser/data_reduction_proxy_config_unittest.cc
+++ b/components/data_reduction_proxy/core/browser/data_reduction_proxy_config_unittest.cc
@@ -158,9 +158,9 @@ class DataReductionProxyConfigTest : public testing::Test {
responder.response = response;
responder.status = status;
responder.http_response_code = response_code;
- EXPECT_CALL(*config(), SecureProxyCheck(_, _))
+ EXPECT_CALL(*config(), SecureProxyCheck(_))
.Times(1)
- .WillRepeatedly(testing::WithArgs<1>(
+ .WillRepeatedly(testing::WithArgs<0>(
testing::Invoke(&responder, &TestResponder::ExecuteCallback)));
config()->SetIsCaptivePortal(is_captive_portal);
net::NetworkChangeNotifier::NotifyObserversOfIPAddressChangeForTests();

Powered by Google App Engine
This is Rietveld 408576698