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

Unified Diff: components/crash/content/browser/crash_dump_manager_android.cc

Issue 2304733002: crash: Fixes following r413431 (Closed)
Patch Set: remove Created 4 years, 3 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 97091d9c0091944671ce90cd644abc3cf85c07ea..a9b41f94eac37d1e7c6a9bade3894250b32be01f 100644
--- a/components/crash/content/browser/crash_dump_manager_android.cc
+++ b/components/crash/content/browser/crash_dump_manager_android.cc
@@ -39,8 +39,8 @@ void CrashDumpManager::OnChildStart(int child_process_id,
content::FileDescriptorInfo* mappings) {
DCHECK_CURRENTLY_ON(BrowserThread::PROCESS_LAUNCHER);
- //if (!breakpad::IsCrashReporterEnabled())
- // return;
+ if (!breakpad::IsCrashReporterEnabled())
+ return;
base::FilePath minidump_path;
if (!base::CreateTemporaryFile(&minidump_path)) {

Powered by Google App Engine
This is Rietveld 408576698