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

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

Issue 2231753002: components: Use stl utilities from the base namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: One more call site Created 4 years, 4 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_bypass_protocol_unittest.cc
diff --git a/components/data_reduction_proxy/core/browser/data_reduction_proxy_bypass_protocol_unittest.cc b/components/data_reduction_proxy/core/browser/data_reduction_proxy_bypass_protocol_unittest.cc
index 561204eb4d6c8833c7da83c0b2ece21b53953af4..7a3b4b1b25e6e02111ca7d3df70ef5c7db0e3520 100644
--- a/components/data_reduction_proxy/core/browser/data_reduction_proxy_bypass_protocol_unittest.cc
+++ b/components/data_reduction_proxy/core/browser/data_reduction_proxy_bypass_protocol_unittest.cc
@@ -886,9 +886,9 @@ TEST_F(DataReductionProxyBypassProtocolEndToEndTest,
EXPECT_EQ(test.expected_bypass_type,
drp_test_context()->io_data()->bypass_stats()->GetBypassType());
// Check the bad proxy list.
- EXPECT_EQ(
- test.expected_bad_proxy,
- ContainsKey(context()->proxy_service()->proxy_retry_info(), kPrimary));
+ EXPECT_EQ(test.expected_bad_proxy,
+ base::ContainsKey(context()->proxy_service()->proxy_retry_info(),
+ kPrimary));
}
}

Powered by Google App Engine
This is Rietveld 408576698