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

Unified Diff: extensions/browser/error_map.cc

Issue 2236443003: extensions: Use stl utilities from the base namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Don't add braces 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 | « extensions/browser/content_verify_job.cc ('k') | extensions/browser/event_router.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/browser/error_map.cc
diff --git a/extensions/browser/error_map.cc b/extensions/browser/error_map.cc
index 9a806002859da02c8aa41e2c9a3bc0d3cff8ed6b..91733a6cd4ba288b59c519fca12382ebd4c6cd1e 100644
--- a/extensions/browser/error_map.cc
+++ b/extensions/browser/error_map.cc
@@ -133,7 +133,7 @@ bool ErrorMap::ExtensionEntry::DeleteErrors(const Filter& filter) {
}
void ErrorMap::ExtensionEntry::DeleteAllErrors() {
- STLDeleteContainerPointers(list_.begin(), list_.end());
+ base::STLDeleteContainerPointers(list_.begin(), list_.end());
list_.clear();
}
« no previous file with comments | « extensions/browser/content_verify_job.cc ('k') | extensions/browser/event_router.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698