diff options
Diffstat (limited to 'content/app')
-rw-r--r-- | content/app/content_main_runner.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/content/app/content_main_runner.cc b/content/app/content_main_runner.cc index 13ee1bc..f84d096 100644 --- a/content/app/content_main_runner.cc +++ b/content/app/content_main_runner.cc @@ -95,15 +95,15 @@ extern int GpuMain(const content::MainFunctionParams&); extern int PluginMain(const content::MainFunctionParams&); extern int PpapiPluginMain(const content::MainFunctionParams&); extern int PpapiBrokerMain(const content::MainFunctionParams&); -extern int RendererMain(const content::MainFunctionParams&); extern int WorkerMain(const content::MainFunctionParams&); extern int UtilityMain(const content::MainFunctionParams&); -#if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_ANDROID) namespace content { +extern int RendererMain(const MainFunctionParams&); +#if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_ANDROID) extern int ZygoteMain(const MainFunctionParams&, ZygoteForkDelegate* forkdelegate); -} // namespace content #endif +} // namespace content namespace { #if defined(OS_WIN) |