diff options
author | jochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-17 13:25:43 +0000 |
---|---|---|
committer | jochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-17 13:25:43 +0000 |
commit | 329de7f8afc33cc037114e584294bcee1b4f14d3 (patch) | |
tree | bde9edbd8eda37af326106bb1a60c432784cba9f /chrome/app/chrome_exe_main_win.cc | |
parent | bf7fc6aa858b0414f49506a485b9b8346d664803 (diff) | |
download | chromium_src-329de7f8afc33cc037114e584294bcee1b4f14d3.zip chromium_src-329de7f8afc33cc037114e584294bcee1b4f14d3.tar.gz chromium_src-329de7f8afc33cc037114e584294bcee1b4f14d3.tar.bz2 |
Move windows breakpad code to the breakpad component
Also remove a bit of dead code.
BUG=247431
R=rsesek@chromium.org
TBR=jln@chromium.org,wez@chromium.org
Review URL: https://codereview.chromium.org/27112003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@229120 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/app/chrome_exe_main_win.cc')
-rw-r--r-- | chrome/app/chrome_exe_main_win.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/app/chrome_exe_main_win.cc b/chrome/app/chrome_exe_main_win.cc index 5538b5c..dedf967 100644 --- a/chrome/app/chrome_exe_main_win.cc +++ b/chrome/app/chrome_exe_main_win.cc @@ -12,7 +12,6 @@ #include "base/files/file_path.h" #include "base/lazy_instance.h" #include "chrome/app/chrome_breakpad_client.h" -#include "chrome/app/breakpad_win.h" #include "chrome/app/client_util.h" #include "chrome/app/metro_driver_win.h" #include "chrome/browser/chrome_process_finder_win.h" @@ -20,6 +19,7 @@ #include "chrome/common/chrome_paths_internal.h" #include "chrome/common/chrome_switches.h" #include "components/breakpad/breakpad_client.h" +#include "components/breakpad/breakpad_win.h" #include "content/public/app/startup_helper_win.h" #include "content/public/common/result_codes.h" #include "sandbox/win/src/sandbox_factory.h" @@ -34,7 +34,7 @@ int RunChrome(HINSTANCE instance) { bool exit_now = true; // We restarted because of a previous crash. Ask user if we should relaunch. - if (ShowRestartDialogIfCrashed(&exit_now)) { + if (breakpad::ShowRestartDialogIfCrashed(&exit_now)) { if (exit_now) return content::RESULT_CODE_NORMAL_EXIT; } |