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

Unified Diff: chrome/browser/ui/webui/inspect_ui.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/ui/webui/inspect_ui.cc
diff --git a/chrome/browser/ui/webui/inspect_ui.cc b/chrome/browser/ui/webui/inspect_ui.cc
index 3fdb6146da58cbdffd40a2811913d634b197b194..18c88bd5d45f6a70df42ec5855b4af5a0d1fac28 100644
--- a/chrome/browser/ui/webui/inspect_ui.cc
+++ b/chrome/browser/ui/webui/inspect_ui.cc
@@ -416,7 +416,7 @@ void InspectUI::StopListeningNotifications() {
if (target_handlers_.empty())
return;
- STLDeleteValues(&target_handlers_);
+ base::STLDeleteValues(&target_handlers_);
port_status_serializer_.reset();

Powered by Google App Engine
This is Rietveld 408576698