diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-21 19:52:47 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-21 19:52:47 +0000 |
commit | 91355a856f83888eab29f6a3299aa7c0fe69c3e3 (patch) | |
tree | 99ecc647ffb3988279cc768a5a00b7d5a32125ce /content/app | |
parent | 8463d75aed2831944bfc7471ef239b0c6e31a6ca (diff) | |
download | chromium_src-91355a856f83888eab29f6a3299aa7c0fe69c3e3.zip chromium_src-91355a856f83888eab29f6a3299aa7c0fe69c3e3.tar.gz chromium_src-91355a856f83888eab29f6a3299aa7c0fe69c3e3.tar.bz2 |
Move content's a plugin, ppapi_plugin, utility, and worker subdirectories to the content namespace.
Review URL: https://codereview.chromium.org/11231016
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@163210 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/app')
-rw-r--r-- | content/app/content_main_runner.cc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/content/app/content_main_runner.cc b/content/app/content_main_runner.cc index f84d096..0b03058 100644 --- a/content/app/content_main_runner.cc +++ b/content/app/content_main_runner.cc @@ -92,13 +92,13 @@ int tc_set_new_mode(int mode); #endif 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 WorkerMain(const content::MainFunctionParams&); -extern int UtilityMain(const content::MainFunctionParams&); namespace content { -extern int RendererMain(const MainFunctionParams&); +extern int PluginMain(const content::MainFunctionParams&); +extern int PpapiPluginMain(const MainFunctionParams&); +extern int PpapiBrokerMain(const MainFunctionParams&); +extern int RendererMain(const content::MainFunctionParams&); +extern int UtilityMain(const MainFunctionParams&); +extern int WorkerMain(const MainFunctionParams&); #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_ANDROID) extern int ZygoteMain(const MainFunctionParams&, ZygoteForkDelegate* forkdelegate); |