diff options
Diffstat (limited to 'chrome/app/chrome_exe_main.cc')
-rw-r--r-- | chrome/app/chrome_exe_main.cc | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/chrome/app/chrome_exe_main.cc b/chrome/app/chrome_exe_main.cc index a28ad16..d95fab7 100644 --- a/chrome/app/chrome_exe_main.cc +++ b/chrome/app/chrome_exe_main.cc @@ -36,7 +36,6 @@ #include "base/debug_on_start.h" #include "chrome/app/breakpad.h" #include "chrome/app/google_update_client.h" -#include "chrome/app/google_update_settings.h" #include "chrome/app/result_codes.h" #include "chrome/common/chrome_switches.h" #include "sandbox/src/sandbox_factory.h" @@ -89,11 +88,7 @@ int APIENTRY wWinMain(HINSTANCE instance, HINSTANCE prev_instance, client.Init(L"{8A69D345-D564-463c-AFF1-A69D9E530F96}", dll_name); // Initialize the crash reporter. - if (GoogleUpdateSettings::GetCollectStatsConsent()) { - InitCrashReporter(client.GetDLLPath()); - } else { - InitDefaultCrashCallback(); - } + InitCrashReporter(client.GetDLLPath()); bool exit_now = false; if (ShowRestartDialogIfCrashed(&exit_now)) { |