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

Unified Diff: chrome/browser/command_updater.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/command_updater.cc
diff --git a/chrome/browser/command_updater.cc b/chrome/browser/command_updater.cc
index eae13ce041470b7e127515c9ba0f2bfa2efe937e..e93a729b59cd077c1dff25d0e313cf317622da41 100644
--- a/chrome/browser/command_updater.cc
+++ b/chrome/browser/command_updater.cc
@@ -25,7 +25,8 @@ CommandUpdater::CommandUpdater(CommandUpdaterDelegate* delegate)
}
CommandUpdater::~CommandUpdater() {
- STLDeleteContainerPairSecondPointers(commands_.begin(), commands_.end());
+ base::STLDeleteContainerPairSecondPointers(commands_.begin(),
+ commands_.end());
}
bool CommandUpdater::SupportsCommand(int id) const {

Powered by Google App Engine
This is Rietveld 408576698