Index: content/app/content_main_runner.cc |
diff --git a/content/app/content_main_runner.cc b/content/app/content_main_runner.cc |
index 5040e13b032deb98cded4d2ddd09b038568b54ec..f87bac4a137d7fb1e07104e7d39d3724efce0995 100644 |
--- a/content/app/content_main_runner.cc |
+++ b/content/app/content_main_runner.cc |
@@ -80,8 +80,10 @@ 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) |
+namespace content { |
extern int ZygoteMain(const content::MainFunctionParams&, |
content::ZygoteForkDelegate* forkdelegate); |
+} // namespace content |
#endif |
namespace { |
@@ -218,7 +220,7 @@ int RunZygote(const content::MainFunctionParams& main_function_params, |
} |
// This function call can return multiple times, once per fork(). |
- if (!ZygoteMain(main_function_params, zygote_fork_delegate.get())) |
+ if (!content::ZygoteMain(main_function_params, zygote_fork_delegate.get())) |
return 1; |
if (delegate) delegate->ZygoteForked(); |