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

Unified Diff: extensions/browser/api/socket/app_firewall_hole_manager.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
Index: extensions/browser/api/socket/app_firewall_hole_manager.cc
diff --git a/extensions/browser/api/socket/app_firewall_hole_manager.cc b/extensions/browser/api/socket/app_firewall_hole_manager.cc
index db9d3d76d2653c727fe23efece0a2a81a6052713..1f076c3df548ac373059fa1980573d388895e7a0 100644
--- a/extensions/browser/api/socket/app_firewall_hole_manager.cc
+++ b/extensions/browser/api/socket/app_firewall_hole_manager.cc
@@ -110,7 +110,7 @@ AppFirewallHoleManager::AppFirewallHoleManager(BrowserContext* context)
}
AppFirewallHoleManager::~AppFirewallHoleManager() {
- STLDeleteValues(&tracked_holes_);
+ base::STLDeleteValues(&tracked_holes_);
}
AppFirewallHoleManager* AppFirewallHoleManager::Get(BrowserContext* context) {

Powered by Google App Engine
This is Rietveld 408576698