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

Unified Diff: chrome/browser/plugins/plugin_finder.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/plugins/plugin_finder.cc
diff --git a/chrome/browser/plugins/plugin_finder.cc b/chrome/browser/plugins/plugin_finder.cc
index 2279de03c7d3c8926ce95f7da8e54214291c28c7..e9902abcdb7e467d27aa167acb8499b708f193b9 100644
--- a/chrome/browser/plugins/plugin_finder.cc
+++ b/chrome/browser/plugins/plugin_finder.cc
@@ -247,9 +247,9 @@ base::DictionaryValue* PluginFinder::LoadBuiltInPluginList() {
PluginFinder::~PluginFinder() {
#if defined(ENABLE_PLUGIN_INSTALLATION)
- STLDeleteValues(&installers_);
+ base::STLDeleteValues(&installers_);
#endif
- STLDeleteValues(&identifier_plugin_);
+ base::STLDeleteValues(&identifier_plugin_);
}
#if defined(ENABLE_PLUGIN_INSTALLATION)
@@ -310,7 +310,7 @@ void PluginFinder::ReinitializePlugins(
version_ = version;
- STLDeleteValues(&identifier_plugin_);
+ base::STLDeleteValues(&identifier_plugin_);
for (base::DictionaryValue::Iterator plugin_it(*plugin_list);
!plugin_it.IsAtEnd(); plugin_it.Advance()) {
« no previous file with comments | « chrome/browser/password_manager/password_store_x_unittest.cc ('k') | chrome/browser/plugins/plugin_observer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698