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

Unified Diff: components/sync/syncable/syncable_delete_journal.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/syncable/parent_child_index_unittest.cc ('k') | components/sync_sessions/synced_session.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/sync/syncable/syncable_delete_journal.cc
diff --git a/components/sync/syncable/syncable_delete_journal.cc b/components/sync/syncable/syncable_delete_journal.cc
index a66da469667e6e004e1a1ef2508f3b1f1b2722ce..b8835ada37ff2d6255fc07967fc046471235eb9c 100644
--- a/components/sync/syncable/syncable_delete_journal.cc
+++ b/components/sync/syncable/syncable_delete_journal.cc
@@ -19,7 +19,7 @@ DeleteJournal::DeleteJournal(JournalIndex* initial_journal) {
}
DeleteJournal::~DeleteJournal() {
- STLDeleteElements(&delete_journals_);
+ base::STLDeleteElements(&delete_journals_);
}
size_t DeleteJournal::GetDeleteJournalSize(BaseTransaction* trans) const {
« no previous file with comments | « components/sync/syncable/parent_child_index_unittest.cc ('k') | components/sync_sessions/synced_session.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698