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

Unified Diff: chrome/browser/sync/test/integration/sessions_helper.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/sync/test/integration/sessions_helper.cc
diff --git a/chrome/browser/sync/test/integration/sessions_helper.cc b/chrome/browser/sync/test/integration/sessions_helper.cc
index acb04958e7c38ebbdc0f6e0ccda17fe4cb36e17f..4fe505a1bb6786e2c624eef2d2194ec9d42461a0 100644
--- a/chrome/browser/sync/test/integration/sessions_helper.cc
+++ b/chrome/browser/sync/test/integration/sessions_helper.cc
@@ -44,7 +44,7 @@ ScopedWindowMap::ScopedWindowMap(SessionWindowMap* windows) {
}
ScopedWindowMap::~ScopedWindowMap() {
- STLDeleteContainerPairSecondPointers(windows_.begin(), windows_.end());
+ base::STLDeleteContainerPairSecondPointers(windows_.begin(), windows_.end());
}
SessionWindowMap* ScopedWindowMap::GetMutable() {
@@ -56,7 +56,7 @@ const SessionWindowMap* ScopedWindowMap::Get() const {
}
void ScopedWindowMap::Reset(SessionWindowMap* windows) {
- STLDeleteContainerPairSecondPointers(windows_.begin(), windows_.end());
+ base::STLDeleteContainerPairSecondPointers(windows_.begin(), windows_.end());
windows_.clear();
std::swap(*windows, windows_);
}

Powered by Google App Engine
This is Rietveld 408576698