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

Unified Diff: chrome/browser/ui/search_engines/template_url_table_model.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
« no previous file with comments | « chrome/browser/ui/global_error/global_error_service.cc ('k') | chrome/browser/ui/tabs/tab_strip_model.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/search_engines/template_url_table_model.cc
diff --git a/chrome/browser/ui/search_engines/template_url_table_model.cc b/chrome/browser/ui/search_engines/template_url_table_model.cc
index d512e292520b4174f795df59494dd6ffcfab20f8..e08544404a5234fcca4e41c57beb047a1bb35897 100644
--- a/chrome/browser/ui/search_engines/template_url_table_model.cc
+++ b/chrome/browser/ui/search_engines/template_url_table_model.cc
@@ -130,11 +130,11 @@ TemplateURLTableModel::TemplateURLTableModel(
TemplateURLTableModel::~TemplateURLTableModel() {
template_url_service_->RemoveObserver(this);
- STLDeleteElements(&entries_);
+ base::STLDeleteElements(&entries_);
}
void TemplateURLTableModel::Reload() {
- STLDeleteElements(&entries_);
+ base::STLDeleteElements(&entries_);
TemplateURLService::TemplateURLVector urls =
template_url_service_->GetTemplateURLs();
« no previous file with comments | « chrome/browser/ui/global_error/global_error_service.cc ('k') | chrome/browser/ui/tabs/tab_strip_model.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698