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

Side by Side Diff: chrome/browser/chrome_browser_main_android.cc

Issue 2200693002: Refactor CrashDump*Manager to use a shared CrashDumpObserver. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 2 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/chrome_browser_main_android.h" 5 #include "chrome/browser/chrome_browser_main_android.h"
6 6
7 #include "base/base_switches.h" 7 #include "base/base_switches.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "base/files/file_path.h" 9 #include "base/files/file_path.h"
10 #include "base/files/file_util.h" 10 #include "base/files/file_util.h"
11 #include "base/memory/ptr_util.h"
11 #include "base/path_service.h" 12 #include "base/path_service.h"
12 #include "base/trace_event/trace_event.h" 13 #include "base/trace_event/trace_event.h"
13 #include "chrome/browser/android/mojo/chrome_interface_registrar_android.h" 14 #include "chrome/browser/android/mojo/chrome_interface_registrar_android.h"
14 #include "chrome/browser/android/seccomp_support_detector.h" 15 #include "chrome/browser/android/seccomp_support_detector.h"
15 #include "chrome/browser/signin/signin_manager_factory.h" 16 #include "chrome/browser/signin/signin_manager_factory.h"
16 #include "chrome/common/chrome_paths.h" 17 #include "chrome/common/chrome_paths.h"
18 #include "chrome/common/descriptors_android.h"
17 #include "components/crash/content/app/breakpad_linux.h" 19 #include "components/crash/content/app/breakpad_linux.h"
18 #include "components/crash/content/browser/crash_dump_manager_android.h" 20 #include "components/crash/content/browser/crash_dump_manager_android.h"
19 #include "components/signin/core/browser/signin_manager.h" 21 #include "components/signin/core/browser/signin_manager.h"
20 #include "content/public/browser/android/compositor.h" 22 #include "content/public/browser/android/compositor.h"
21 #include "content/public/browser/browser_thread.h" 23 #include "content/public/browser/browser_thread.h"
22 #include "content/public/common/main_function_params.h" 24 #include "content/public/common/main_function_params.h"
23 #include "net/android/network_change_notifier_factory_android.h" 25 #include "net/android/network_change_notifier_factory_android.h"
24 #include "net/base/network_change_notifier.h" 26 #include "net/base/network_change_notifier.h"
25 #include "ui/base/resource/resource_bundle_android.h" 27 #include "ui/base/resource/resource_bundle_android.h"
26 #include "ui/base/ui_base_paths.h" 28 #include "ui/base/ui_base_paths.h"
(...skipping 12 matching lines...) Expand all
39 const content::MainFunctionParams& parameters) 41 const content::MainFunctionParams& parameters)
40 : ChromeBrowserMainParts(parameters) { 42 : ChromeBrowserMainParts(parameters) {
41 } 43 }
42 44
43 ChromeBrowserMainPartsAndroid::~ChromeBrowserMainPartsAndroid() { 45 ChromeBrowserMainPartsAndroid::~ChromeBrowserMainPartsAndroid() {
44 } 46 }
45 47
46 int ChromeBrowserMainPartsAndroid::PreCreateThreads() { 48 int ChromeBrowserMainPartsAndroid::PreCreateThreads() {
47 TRACE_EVENT0("startup", "ChromeBrowserMainPartsAndroid::PreCreateThreads") 49 TRACE_EVENT0("startup", "ChromeBrowserMainPartsAndroid::PreCreateThreads")
48 50
49 // The CrashDumpManager must be initialized before any child process is 51 // The CrashDumpManager must be registered before any child process is
50 // created (as they need to access it during creation). Such processes 52 // created (as it needs to be notified during child process
51 // are created on the PROCESS_LAUNCHER thread, and so the manager is 53 // creation). Such processes are created on the PROCESS_LAUNCHER
52 // initialized before that thread is created. 54 // thread, and so the observer is initialized and the manager
55 // registered before that thread is created.
56 crash_dump_observer_ = base::MakeUnique<breakpad::CrashDumpObserver>();
57
53 #if defined(GOOGLE_CHROME_BUILD) 58 #if defined(GOOGLE_CHROME_BUILD)
54 // TODO(jcivelli): we should not initialize the crash-reporter when it was not 59 // TODO(jcivelli): we should not initialize the crash-reporter when it was not
55 // enabled. Right now if it is disabled we still generate the minidumps but we 60 // enabled. Right now if it is disabled we still generate the minidumps but we
56 // do not upload them. 61 // do not upload them.
57 bool breakpad_enabled = true; 62 bool breakpad_enabled = true;
58 #else 63 #else
59 bool breakpad_enabled = false; 64 bool breakpad_enabled = false;
60 #endif 65 #endif
61 66
62 // Allow Breakpad to be enabled in Chromium builds for testing purposes. 67 // Allow Breakpad to be enabled in Chromium builds for testing purposes.
63 if (!breakpad_enabled) 68 if (!breakpad_enabled)
64 breakpad_enabled = base::CommandLine::ForCurrentProcess()->HasSwitch( 69 breakpad_enabled = base::CommandLine::ForCurrentProcess()->HasSwitch(
65 switches::kEnableCrashReporterForTesting); 70 switches::kEnableCrashReporterForTesting);
66 71
67 if (breakpad_enabled) { 72 if (breakpad_enabled) {
68 base::FilePath crash_dump_dir; 73 base::FilePath crash_dump_dir;
69 PathService::Get(chrome::DIR_CRASH_DUMPS, &crash_dump_dir); 74 PathService::Get(chrome::DIR_CRASH_DUMPS, &crash_dump_dir);
70 crash_dump_manager_.reset(new breakpad::CrashDumpManager(crash_dump_dir)); 75 crash_dump_observer_->RegisterClient(new breakpad::CrashDumpManager(
76 crash_dump_dir, kAndroidMinidumpDescriptor));
71 } 77 }
72 78
73 ui::SetLocalePaksStoredInApk(false); 79 ui::SetLocalePaksStoredInApk(false);
74 80
75 return ChromeBrowserMainParts::PreCreateThreads(); 81 return ChromeBrowserMainParts::PreCreateThreads();
76 } 82 }
77 83
78 void ChromeBrowserMainPartsAndroid::PostProfileInit() { 84 void ChromeBrowserMainPartsAndroid::PostProfileInit() {
79 ChromeBrowserMainParts::PostProfileInit(); 85 ChromeBrowserMainParts::PostProfileInit();
80 86
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 content::BrowserThread::GetBlockingPool()->PostDelayedTask(FROM_HERE, 130 content::BrowserThread::GetBlockingPool()->PostDelayedTask(FROM_HERE,
125 base::Bind(&SeccompSupportDetector::StartDetection), 131 base::Bind(&SeccompSupportDetector::StartDetection),
126 base::TimeDelta::FromMinutes(1)); 132 base::TimeDelta::FromMinutes(1));
127 133
128 RegisterChromeJavaMojoInterfaces(); 134 RegisterChromeJavaMojoInterfaces();
129 } 135 }
130 136
131 void ChromeBrowserMainPartsAndroid::ShowMissingLocaleMessageBox() { 137 void ChromeBrowserMainPartsAndroid::ShowMissingLocaleMessageBox() {
132 NOTREACHED(); 138 NOTREACHED();
133 } 139 }
OLDNEW
« no previous file with comments | « chrome/browser/chrome_browser_main_android.h ('k') | chrome/browser/chrome_content_browser_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698