diff options
author | jeremy@chromium.org <jeremy@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-13 17:07:59 +0000 |
---|---|---|
committer | jeremy@chromium.org <jeremy@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-13 17:07:59 +0000 |
commit | 20c74302b227db28d64ca8394be25f00b4f06fa2 (patch) | |
tree | 46cf75c8f113a7bd15de7fa8359b7077dcaf37e2 /chrome | |
parent | b3f901e83c60041fa6fd822364bd3580a710e200 (diff) | |
download | chromium_src-20c74302b227db28d64ca8394be25f00b4f06fa2.zip chromium_src-20c74302b227db28d64ca8394be25f00b4f06fa2.tar.gz chromium_src-20c74302b227db28d64ca8394be25f00b4f06fa2.tar.bz2 |
Disable Native Crash reporting on OS X, till we enable Breakpad integration.
See http://crbug.com/7652
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@9757 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/app/chrome_dll_main.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/chrome/app/chrome_dll_main.cc b/chrome/app/chrome_dll_main.cc index 08d3edb..3a94bb5 100644 --- a/chrome/app/chrome_dll_main.cc +++ b/chrome/app/chrome_dll_main.cc @@ -22,6 +22,7 @@ #include "base/at_exit.h" #include "base/command_line.h" +#include "base/debug_util.h" #include "base/icu_util.h" #include "base/message_loop.h" #include "base/path_service.h" @@ -195,6 +196,10 @@ DLLEXPORT int __cdecl ChromeMain(HINSTANCE instance, #elif defined(OS_POSIX) int ChromeMain(int argc, const char** argv) { #endif + +#if defined(OS_MACOSX) + DebugUtil::DisableOSCrashDumps(); +#endif RegisterInvalidParamHandler(); // The exit manager is in charge of calling the dtors of singleton objects. |