Index: chrome/browser/chrome_content_browser_client.cc |
diff --git a/chrome/browser/chrome_content_browser_client.cc b/chrome/browser/chrome_content_browser_client.cc |
index 31c8f70af1f6a8d203d2ef405b1615fb23ff6ace..11dc2641743651d2b56205a5b691608744290268 100644 |
--- a/chrome/browser/chrome_content_browser_client.cc |
+++ b/chrome/browser/chrome_content_browser_client.cc |
@@ -541,13 +541,6 @@ int GetCrashSignalFD(const base::CommandLine& command_line) { |
return crash_handler->GetDeathSignalSocket(); |
} |
- if (process_type == switches::kPluginProcess) { |
- static breakpad::CrashHandlerHostLinux* crash_handler = NULL; |
- if (!crash_handler) |
- crash_handler = CreateCrashHandlerHost(process_type); |
- return crash_handler->GetDeathSignalSocket(); |
- } |
- |
if (process_type == switches::kPpapiPluginProcess) { |
static breakpad::CrashHandlerHostLinux* crash_handler = NULL; |
if (!crash_handler) |
@@ -1681,15 +1674,6 @@ void ChromeContentBrowserClient::AppendExtraCommandLineSwitches( |
command_line->CopySwitchesFrom(browser_command_line, kSwitchNames, |
arraysize(kSwitchNames)); |
#endif |
- } else if (process_type == switches::kPluginProcess) { |
-#if defined(OS_CHROMEOS) |
- static const char* const kSwitchNames[] = { |
- chromeos::switches::kLoginProfile, |
- }; |
- |
- command_line->CopySwitchesFrom(browser_command_line, kSwitchNames, |
- arraysize(kSwitchNames)); |
-#endif |
} else if (process_type == switches::kZygoteProcess) { |
static const char* const kSwitchNames[] = { |
// Load (in-process) Pepper plugins in-process in the zygote pre-sandbox. |