diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-11 18:34:10 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-11 18:34:10 +0000 |
commit | 6b7a5e329b36cbda1f8e432fbc92cc7acb5ede4c (patch) | |
tree | 2599faa9f78691b9e5b353b178d8485a4f6fe320 /chrome/nacl | |
parent | baf405574a8a4f40dde15ac35ba4ad0cf34846cc (diff) | |
download | chromium_src-6b7a5e329b36cbda1f8e432fbc92cc7acb5ede4c.zip chromium_src-6b7a5e329b36cbda1f8e432fbc92cc7acb5ede4c.tar.gz chromium_src-6b7a5e329b36cbda1f8e432fbc92cc7acb5ede4c.tar.bz2 |
Move Linux sub process breakpad initialization to a common place.
Review URL: http://codereview.chromium.org/6667024
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@77834 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/nacl')
-rw-r--r-- | chrome/nacl/nacl_main.cc | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/chrome/nacl/nacl_main.cc b/chrome/nacl/nacl_main.cc index 20ea0c8..11194d9 100644 --- a/chrome/nacl/nacl_main.cc +++ b/chrome/nacl/nacl_main.cc @@ -11,11 +11,6 @@ #include "base/command_line.h" #include "base/message_loop.h" #include "base/string_util.h" - -#if defined(USE_LINUX_BREAKPAD) -#include "chrome/app/breakpad_linux.h" -#endif - #include "chrome/common/chrome_constants.h" #include "chrome/common/chrome_switches.h" #include "chrome/common/hi_res_timer_manager.h" @@ -95,10 +90,6 @@ static void HandleNaClTestParameters(const CommandLine& command_line) { // main() routine for the NaCl loader process. int NaClMain(const MainFunctionParams& parameters) { -#if defined(USE_LINUX_BREAKPAD) - // Needs to be called after we have chrome::DIR_USER_DATA. - InitCrashReporter(); -#endif const CommandLine& parsed_command_line = parameters.command_line_; // This function allows pausing execution using the --nacl-startup-dialog |