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

Unified Diff: chrome/browser/sync_file_system/subtree_set.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/subtree_set.cc
diff --git a/chrome/browser/sync_file_system/subtree_set.cc b/chrome/browser/sync_file_system/subtree_set.cc
index 6d135e59fb6bae8c085dc07181c031f030f99a62..19a64f38d038f392ebebc6b848deb89b266a0c32 100644
--- a/chrome/browser/sync_file_system/subtree_set.cc
+++ b/chrome/browser/sync_file_system/subtree_set.cc
@@ -30,8 +30,8 @@ bool SubtreeSet::IsDisjointWith(const base::FilePath& subtree_root) const {
storage::VirtualPath::GetNormalizedFilePath(subtree_root);
// Check if |subtree_root| contains any of subtrees in the container.
- if (ContainsKey(inclusive_ancestors_of_subtree_roots_,
- normalized_subtree_root))
+ if (base::ContainsKey(inclusive_ancestors_of_subtree_roots_,
+ normalized_subtree_root))
return false;
base::FilePath path(normalized_subtree_root);
« no previous file with comments | « chrome/browser/sync_file_system/local/syncable_file_system_unittest.cc ('k') | chrome/browser/sync_file_system/task_logger.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698