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

Unified Diff: chrome/browser/media_galleries/media_galleries_preferences_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/media_galleries/media_galleries_preferences_unittest.cc
diff --git a/chrome/browser/media_galleries/media_galleries_preferences_unittest.cc b/chrome/browser/media_galleries/media_galleries_preferences_unittest.cc
index 96becbfb4f1970e345395b9277f7be8c6831d439..62a7d53074a23c71a8783adbb211562f4949fcd0 100644
--- a/chrome/browser/media_galleries/media_galleries_preferences_unittest.cc
+++ b/chrome/browser/media_galleries/media_galleries_preferences_unittest.cc
@@ -211,8 +211,8 @@ class MediaGalleriesPreferencesTest : public testing::Test {
VerifyGalleryInfo(it->second, it->first);
if (it->second.type != MediaGalleryPrefInfo::kAutoDetected &&
it->second.type != MediaGalleryPrefInfo::kBlackListed) {
- if (!ContainsKey(expected_galleries_for_all, it->first) &&
- !ContainsKey(expected_galleries_for_regular, it->first)) {
+ if (!base::ContainsKey(expected_galleries_for_all, it->first) &&
+ !base::ContainsKey(expected_galleries_for_regular, it->first)) {
EXPECT_FALSE(gallery_prefs_->NonAutoGalleryHasPermission(it->first));
} else {
EXPECT_TRUE(gallery_prefs_->NonAutoGalleryHasPermission(it->first));

Powered by Google App Engine
This is Rietveld 408576698