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

Unified Diff: chrome/browser/sync_file_system/local/local_file_sync_status.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/local/local_file_sync_status.cc
diff --git a/chrome/browser/sync_file_system/local/local_file_sync_status.cc b/chrome/browser/sync_file_system/local/local_file_sync_status.cc
index 953c374e3ed2aec6194816a50909490ac658d867..b26831ae1c306b20760ea4d669c880a36732a992 100644
--- a/chrome/browser/sync_file_system/local/local_file_sync_status.cc
+++ b/chrome/browser/sync_file_system/local/local_file_sync_status.cc
@@ -61,7 +61,7 @@ bool ContainsChildOrParent(const Container& paths,
// Check if any ancestor of |normalized_path| is in |writing_|.
while (true) {
- if (ContainsKey(paths, normalized_path))
+ if (base::ContainsKey(paths, normalized_path))
return true;
if (storage::VirtualPath::IsRootPath(normalized_path))

Powered by Google App Engine
This is Rietveld 408576698