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

Unified Diff: chrome/browser/chromeos/mobile_config.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/chromeos/mobile_config.cc
diff --git a/chrome/browser/chromeos/mobile_config.cc b/chrome/browser/chromeos/mobile_config.cc
index d3547c85a2f41a76be6990499cf70d17a2e7cdee..fe180ae31e1571b20926c39707463c75bea26c85 100644
--- a/chrome/browser/chromeos/mobile_config.cc
+++ b/chrome/browser/chromeos/mobile_config.cc
@@ -194,7 +194,7 @@ void MobileConfig::Carrier::InitFromDictionary(
}
void MobileConfig::Carrier::RemoveDeals() {
- STLDeleteValues(&deals_);
+ base::STLDeleteValues(&deals_);
}
// MobileConfig::LocaleConfig implementation. ----------------------------------
@@ -317,7 +317,7 @@ MobileConfig::MobileConfig(const std::string& config,
}
MobileConfig::~MobileConfig() {
- STLDeleteValues(&carriers_);
+ base::STLDeleteValues(&carriers_);
}
void MobileConfig::LoadConfig() {

Powered by Google App Engine
This is Rietveld 408576698