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

Unified Diff: chrome/browser/themes/browser_theme_pack.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/themes/browser_theme_pack.cc
diff --git a/chrome/browser/themes/browser_theme_pack.cc b/chrome/browser/themes/browser_theme_pack.cc
index 59a1b7fd2e6e66e0ce75ee3e0aac04362f677613..66d2c63b0ca728c11c23791d7d5e9e43f29ae0f6 100644
--- a/chrome/browser/themes/browser_theme_pack.cc
+++ b/chrome/browser/themes/browser_theme_pack.cc
@@ -889,7 +889,7 @@ BrowserThemePack::BrowserThemePack()
source_images_(NULL) {
scale_factors_ = ui::GetSupportedScaleFactors();
// On Windows HiDPI SCALE_FACTOR_100P may not be supported by default.
- if (!ContainsValue(scale_factors_, ui::SCALE_FACTOR_100P))
+ if (!base::ContainsValue(scale_factors_, ui::SCALE_FACTOR_100P))
scale_factors_.push_back(ui::SCALE_FACTOR_100P);
}

Powered by Google App Engine
This is Rietveld 408576698