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

Unified Diff: components/drive/file_write_watcher.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/drive/chromeos/directory_loader.cc ('k') | components/drive/service/fake_drive_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/drive/file_write_watcher.cc
diff --git a/components/drive/file_write_watcher.cc b/components/drive/file_write_watcher.cc
index e28f3c73bc50dbf99ea021db30cb0bd61ade3a2c..b298adc7472423a5b85bff6eb2d8d543d539f825 100644
--- a/components/drive/file_write_watcher.cc
+++ b/components/drive/file_write_watcher.cc
@@ -115,7 +115,8 @@ void FileWriteWatcher::FileWriteWatcherImpl::StartWatch(
FileWriteWatcher::FileWriteWatcherImpl::~FileWriteWatcherImpl() {
DCHECK(file_task_runner_->BelongsToCurrentThread());
- STLDeleteContainerPairSecondPointers(watchers_.begin(), watchers_.end());
+ base::STLDeleteContainerPairSecondPointers(watchers_.begin(),
+ watchers_.end());
}
void FileWriteWatcher::FileWriteWatcherImpl::DestroyOnFileThread() {
« no previous file with comments | « components/drive/chromeos/directory_loader.cc ('k') | components/drive/service/fake_drive_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698