diff options
author | jeremy@chromium.org <jeremy@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-26 15:55:02 +0000 |
---|---|---|
committer | jeremy@chromium.org <jeremy@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-26 15:55:02 +0000 |
commit | ad5f54471a107a27a7d975f38651426b6c042fc3 (patch) | |
tree | 53f768a325cbe697577ec4773bf9d0c3d40a6bec /chrome/app/chrome_exe_main.cc | |
parent | b5c5cf54b6e984cbf8061da067398e90f9280d0d (diff) | |
download | chromium_src-ad5f54471a107a27a7d975f38651426b6c042fc3.zip chromium_src-ad5f54471a107a27a7d975f38651426b6c042fc3.tar.gz chromium_src-ad5f54471a107a27a7d975f38651426b6c042fc3.tar.bz2 |
First stab at Mac breakpad support.
breakpad_mac.mm still needs some work, there's a bunch of scaffolding in there referring to a custom version of Breakpad I've got going locally.
Review URL: http://codereview.chromium.org/53075
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@12553 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/app/chrome_exe_main.cc')
-rw-r--r-- | chrome/app/chrome_exe_main.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/app/chrome_exe_main.cc b/chrome/app/chrome_exe_main.cc index 053f149..197a50d 100644 --- a/chrome/app/chrome_exe_main.cc +++ b/chrome/app/chrome_exe_main.cc @@ -11,7 +11,7 @@ #include "base/debug_on_start.h" #include "base/process_util.h" #include "base/win_util.h" -#include "chrome/app/breakpad.h" +#include "chrome/app/breakpad_win.h" #include "chrome/app/client_util.h" #include "chrome/app/google_update_client.h" #include "chrome/common/chrome_switches.h" @@ -52,7 +52,7 @@ int APIENTRY wWinMain(HINSTANCE instance, HINSTANCE prev_instance, client.Init(L"{8A69D345-D564-463c-AFF1-A69D9E530F96}", dll_name); // Initialize the crash reporter. - InitCrashReporter(client.GetDLLPath()); + InitCrashReporterWithDllPath(client.GetDLLPath()); bool exit_now = true; if (ShowRestartDialogIfCrashed(&exit_now)) { @@ -85,7 +85,7 @@ int APIENTRY wWinMain(HINSTANCE instance, HINSTANCE prev_instance, LOAD_WITH_ALTERED_SEARCH_PATH); // Initialize the crash reporter. - InitCrashReporter(client_util::GetDLLPath(dll_name, dll_path)); + InitCrashReporterWithDllPath(client_util::GetDLLPath(dll_name, dll_path)); bool exit_now = true; if (ShowRestartDialogIfCrashed(&exit_now)) { |