diff options
author | jochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-18 02:19:36 +0000 |
---|---|---|
committer | jochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-18 02:19:36 +0000 |
commit | 439cab144710e28bcec94bd73ca9b4a14369985a (patch) | |
tree | c87e43676543b95c39a583f1bdd1c71cf4376b20 /chrome/app/breakpad_mac.mm | |
parent | ab96f3bd7e029529ed222fbc49be14de85b1ed5a (diff) | |
download | chromium_src-439cab144710e28bcec94bd73ca9b4a14369985a.zip chromium_src-439cab144710e28bcec94bd73ca9b4a14369985a.tar.gz chromium_src-439cab144710e28bcec94bd73ca9b4a14369985a.tar.bz2 |
Move dependency on dump_without_crashing to breakpad client interface
BUG=247431
R=marja@chromium.org
Review URL: https://chromiumcodereview.appspot.com/19585002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@212210 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/app/breakpad_mac.mm')
-rw-r--r-- | chrome/app/breakpad_mac.mm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/app/breakpad_mac.mm b/chrome/app/breakpad_mac.mm index d7472031..8985521 100644 --- a/chrome/app/breakpad_mac.mm +++ b/chrome/app/breakpad_mac.mm @@ -26,7 +26,6 @@ #include "chrome/common/child_process_logging.h" #include "chrome/common/chrome_switches.h" #include "chrome/common/crash_keys.h" -#include "chrome/common/dump_without_crashing.h" #include "chrome/common/env_vars.h" #include "chrome/installer/util/google_update_settings.h" #include "components/breakpad/breakpad_client.h" @@ -268,7 +267,8 @@ void InitCrashReporter() { } logging::SetLogMessageHandler(&FatalMessageHandler); - logging::SetDumpWithoutCrashingFunction(&DumpHelper::DumpWithoutCrashing); + breakpad::GetBreakpadClient()->SetDumpWithoutCrashingFunction( + &DumpHelper::DumpWithoutCrashing); // abort() sends SIGABRT, which breakpad does not intercept. // Register a signal handler to crash in a way breakpad will |