summaryrefslogtreecommitdiffstats
path: root/content/shell
diff options
context:
space:
mode:
authorjochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-05 21:16:52 +0000
committerjochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-05 21:16:52 +0000
commit718eab64b07e27c6e495878e3ab6e0f8ed21b6df (patch)
tree4047e56c4ecdd88eec53dc9fe5895b89b7caa2d9 /content/shell
parent0d54c2a4ed1c2ec19fdb0c98adb061cfeb618899 (diff)
downloadchromium_src-718eab64b07e27c6e495878e3ab6e0f8ed21b6df.zip
chromium_src-718eab64b07e27c6e495878e3ab6e0f8ed21b6df.tar.gz
chromium_src-718eab64b07e27c6e495878e3ab6e0f8ed21b6df.tar.bz2
Remove RenderProcessHost::is_extension_process
Also move the --process=extension command line flag to --extension-process BUG=89642 TEST=everything still works Review URL: http://codereview.chromium.org/8113035 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@104173 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/shell')
-rw-r--r--content/shell/shell_content_browser_client.cc2
-rw-r--r--content/shell/shell_content_browser_client.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/content/shell/shell_content_browser_client.cc b/content/shell/shell_content_browser_client.cc
index 3028b48..1169e24 100644
--- a/content/shell/shell_content_browser_client.cc
+++ b/content/shell/shell_content_browser_client.cc
@@ -273,7 +273,7 @@ FilePath ShellContentBrowserClient::GetDefaultDownloadDirectory() {
#if defined(OS_POSIX) && !defined(OS_MACOSX)
int ShellContentBrowserClient::GetCrashSignalFD(
- const std::string& process_type) {
+ const CommandLine& command_line) {
return -1;
}
#endif
diff --git a/content/shell/shell_content_browser_client.h b/content/shell/shell_content_browser_client.h
index 8128137..c4a41e9 100644
--- a/content/shell/shell_content_browser_client.h
+++ b/content/shell/shell_content_browser_client.h
@@ -140,7 +140,7 @@ class ShellContentBrowserClient : public ContentBrowserClient
virtual FilePath GetDefaultDownloadDirectory() OVERRIDE;
#if defined(OS_POSIX) && !defined(OS_MACOSX)
- virtual int GetCrashSignalFD(const std::string& process_type) OVERRIDE;
+ virtual int GetCrashSignalFD(const CommandLine& command_line) OVERRIDE;
#endif
#if defined(OS_WIN)