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

Unified Diff: components/sync_sessions/synced_session_tracker.cc

Issue 2231753002: components: Use stl utilities from the base namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: One more call site 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 | « components/sync_sessions/synced_session.cc ('k') | components/syncable_prefs/pref_model_associator.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/sync_sessions/synced_session_tracker.cc
diff --git a/components/sync_sessions/synced_session_tracker.cc b/components/sync_sessions/synced_session_tracker.cc
index 527c5a3c4f653db32636f0c490add5859bbf4bf1..1321ddd2f69f671487f2e6ce494566062ed53be9 100644
--- a/components/sync_sessions/synced_session_tracker.cc
+++ b/components/sync_sessions/synced_session_tracker.cc
@@ -430,11 +430,11 @@ void SyncedSessionTracker::Clear() {
}
// Delete SyncedSession objects (which also deletes all their windows/tabs).
- STLDeleteValues(&synced_session_map_);
+ base::STLDeleteValues(&synced_session_map_);
// Go through and delete any tabs we had allocated but had not yet placed into
// a SyncedSession object.
- STLDeleteElements(&unmapped_tabs_);
+ base::STLDeleteElements(&unmapped_tabs_);
// Get rid of our Window/Tab maps (does not delete the actual Window/Tabs
// themselves; they should have all been deleted above).
« no previous file with comments | « components/sync_sessions/synced_session.cc ('k') | components/syncable_prefs/pref_model_associator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698