summaryrefslogtreecommitdiffstats
path: root/content/app
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/app
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/app')
-rw-r--r--content/app/content_main.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/app/content_main.cc b/content/app/content_main.cc
index 6f16030..c59b16a 100644
--- a/content/app/content_main.cc
+++ b/content/app/content_main.cc
@@ -24,7 +24,6 @@
#include "content/common/main_function_params.h"
#include "content/common/sandbox_init_wrapper.h"
#include "content/common/set_process_title.h"
-#include "content/renderer/renderer_main.h"
#include "crypto/nss_util.h"
#include "ipc/ipc_switches.h"
#include "ui/base/ui_base_switches.h"
@@ -62,6 +61,7 @@ extern int GpuMain(const MainFunctionParams&);
extern int PluginMain(const MainFunctionParams&);
extern int PpapiPluginMain(const MainFunctionParams&);
extern int PpapiBrokerMain(const MainFunctionParams&);
+extern int RendererMain(const MainFunctionParams&);
extern int WorkerMain(const MainFunctionParams&);
extern int UtilityMain(const MainFunctionParams&);
#if defined(OS_POSIX) && !defined(OS_MACOSX)