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

Unified Diff: chrome/browser/predictors/resource_prefetch_predictor_tables_unittest.cc

Issue 2230203002: chrome: Use stl utilities from the base namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed accidental components/ change 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: chrome/browser/predictors/resource_prefetch_predictor_tables_unittest.cc
diff --git a/chrome/browser/predictors/resource_prefetch_predictor_tables_unittest.cc b/chrome/browser/predictors/resource_prefetch_predictor_tables_unittest.cc
index af63d510cc9286cd9a8cb2f59f5119d2053d5eeb..5146ab313c45858a4404de725a9f8506e5608af0 100644
--- a/chrome/browser/predictors/resource_prefetch_predictor_tables_unittest.cc
+++ b/chrome/browser/predictors/resource_prefetch_predictor_tables_unittest.cc
@@ -238,7 +238,7 @@ void ResourcePrefetchPredictorTablesTest::TestResourceRowsAreEqual(
for (ResourceRows::const_iterator rhs_it = rhs.begin();
rhs_it != rhs.end(); ++rhs_it) {
const GURL& resource = rhs_it->resource_url;
- EXPECT_FALSE(ContainsKey(resources_seen, resource));
+ EXPECT_FALSE(base::ContainsKey(resources_seen, resource));
for (ResourceRows::const_iterator lhs_it = lhs.begin();
lhs_it != lhs.end(); ++lhs_it) {
@@ -247,7 +247,7 @@ void ResourcePrefetchPredictorTablesTest::TestResourceRowsAreEqual(
break;
}
}
- EXPECT_TRUE(ContainsKey(resources_seen, resource));
+ EXPECT_TRUE(base::ContainsKey(resources_seen, resource));
}
EXPECT_EQ(lhs.size(), resources_seen.size());
}
« no previous file with comments | « chrome/browser/predictors/autocomplete_action_predictor.cc ('k') | chrome/browser/predictors/resource_prefetcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698