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

Unified Diff: components/crash/content/browser/crash_dump_manager_android.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
Index: components/crash/content/browser/crash_dump_manager_android.cc
diff --git a/components/crash/content/browser/crash_dump_manager_android.cc b/components/crash/content/browser/crash_dump_manager_android.cc
index 1a618ff205f0443a36850a0a2c56282c625bd0a0..0d9c0aa71b386c20c4d8d37b14eba11912455a61 100644
--- a/components/crash/content/browser/crash_dump_manager_android.cc
+++ b/components/crash/content/browser/crash_dump_manager_android.cc
@@ -77,7 +77,8 @@ base::File CrashDumpManager::CreateMinidumpFile(int child_process_id) {
{
base::AutoLock auto_lock(child_process_id_to_minidump_path_lock_);
- DCHECK(!ContainsKey(child_process_id_to_minidump_path_, child_process_id));
+ DCHECK(!base::ContainsKey(child_process_id_to_minidump_path_,
+ child_process_id));
child_process_id_to_minidump_path_[child_process_id] = minidump_path;
}
return minidump_file;

Powered by Google App Engine
This is Rietveld 408576698