diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-19 21:31:26 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-19 21:31:26 +0000 |
commit | e9ff79ccdf72412480abf22860924c3eedcc61f0 (patch) | |
tree | c85c010a58d15374fc7fc2d31f9c8f33e3f74ae3 /content/app | |
parent | 5f23a1cf7f266005763a9c40ec4a422f7dc9b3bb (diff) | |
download | chromium_src-e9ff79ccdf72412480abf22860924c3eedcc61f0.zip chromium_src-e9ff79ccdf72412480abf22860924c3eedcc61f0.tar.gz chromium_src-e9ff79ccdf72412480abf22860924c3eedcc61f0.tar.bz2 |
Move a bunch of code in content\renderer to the content namespace.
Review URL: https://codereview.chromium.org/11232014
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@163061 0039d316-1c4b-4281-b951-d872f2087c98
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) |