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

Unified Diff: chrome/browser/sync_file_system/task_logger.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_file_system/task_logger.cc
diff --git a/chrome/browser/sync_file_system/task_logger.cc b/chrome/browser/sync_file_system/task_logger.cc
index 00e2196ac774be9e5dfa0f21398e5c4016f27245..fcfa16d49c4b36c3d873774032b5b3fd9a1ad8c8 100644
--- a/chrome/browser/sync_file_system/task_logger.cc
+++ b/chrome/browser/sync_file_system/task_logger.cc
@@ -53,7 +53,7 @@ void TaskLogger::RecordLog(std::unique_ptr<TaskLog> log) {
}
void TaskLogger::ClearLog() {
- STLDeleteContainerPointers(log_history_.begin(), log_history_.end());
+ base::STLDeleteContainerPointers(log_history_.begin(), log_history_.end());
log_history_.clear();
}
« no previous file with comments | « chrome/browser/sync_file_system/subtree_set.cc ('k') | chrome/browser/task_manager/mock_web_contents_task_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698