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

Unified Diff: storage/browser/fileapi/external_mount_points.cc

Issue 2236453002: storage: Use stl utilities from the base namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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: storage/browser/fileapi/external_mount_points.cc
diff --git a/storage/browser/fileapi/external_mount_points.cc b/storage/browser/fileapi/external_mount_points.cc
index f9ffdbdbb99e6e45b6308d37333905deead29bab..927bca4c2a8ec2dd53946e856d485d6225f12852 100644
--- a/storage/browser/fileapi/external_mount_points.cc
+++ b/storage/browser/fileapi/external_mount_points.cc
@@ -253,15 +253,15 @@ void ExternalMountPoints::RevokeAllFileSystems() {
instance_map_.clear();
path_to_name_map_.clear();
}
- STLDeleteContainerPairSecondPointers(instance_map_copy.begin(),
- instance_map_copy.end());
+ base::STLDeleteContainerPairSecondPointers(instance_map_copy.begin(),
+ instance_map_copy.end());
}
ExternalMountPoints::ExternalMountPoints() {}
ExternalMountPoints::~ExternalMountPoints() {
- STLDeleteContainerPairSecondPointers(instance_map_.begin(),
- instance_map_.end());
+ base::STLDeleteContainerPairSecondPointers(instance_map_.begin(),
+ instance_map_.end());
}
FileSystemURL ExternalMountPoints::CrackFileSystemURL(
« no previous file with comments | « storage/browser/fileapi/copy_or_move_operation_delegate.cc ('k') | storage/browser/fileapi/file_system_context.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698