summaryrefslogtreecommitdiffstats
path: root/chrome/plugin
diff options
context:
space:
mode:
authorjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-11 18:34:10 +0000
committerjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-11 18:34:10 +0000
commit6b7a5e329b36cbda1f8e432fbc92cc7acb5ede4c (patch)
tree2599faa9f78691b9e5b353b178d8485a4f6fe320 /chrome/plugin
parentbaf405574a8a4f40dde15ac35ba4ad0cf34846cc (diff)
downloadchromium_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/plugin')
-rw-r--r--chrome/plugin/plugin_main.cc9
1 files changed, 0 insertions, 9 deletions
diff --git a/chrome/plugin/plugin_main.cc b/chrome/plugin/plugin_main.cc
index 0d6086e..fa45585 100644
--- a/chrome/plugin/plugin_main.cc
+++ b/chrome/plugin/plugin_main.cc
@@ -31,10 +31,6 @@
#include "ipc/ipc_descriptors.h"
#endif
-#if defined(USE_LINUX_BREAKPAD)
-#include "chrome/app/breakpad_linux.h"
-#endif
-
#if defined(OS_MACOSX)
// Removes our Carbon library interposing from the environment so that it
// doesn't carry into any processes that plugins might start.
@@ -83,11 +79,6 @@ int PreloadIMEForFlash() {
// main() routine for running as the plugin process.
int PluginMain(const MainFunctionParams& parameters) {
-#if defined(USE_LINUX_BREAKPAD)
- // Needs to be called after we have chrome::DIR_USER_DATA.
- InitCrashReporter();
-#endif
-
// The main thread of the plugin services UI.
#if defined(OS_MACOSX)
#if !defined(__LP64__)