diff options
author | dpranke@chromium.org <dpranke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-13 00:05:58 +0000 |
---|---|---|
committer | dpranke@chromium.org <dpranke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-13 00:05:58 +0000 |
commit | 5e557a2246cbf79caeec1dc0b0e277821c2bb1dc (patch) | |
tree | ea592c70c8c107bbfad315a03ffc76189522f150 /chrome | |
parent | 962d46c393b425ba908d1e9d56eb711049a9a698 (diff) | |
download | chromium_src-5e557a2246cbf79caeec1dc0b0e277821c2bb1dc.zip chromium_src-5e557a2246cbf79caeec1dc0b0e277821c2bb1dc.tar.gz chromium_src-5e557a2246cbf79caeec1dc0b0e277821c2bb1dc.tar.bz2 |
export RendererMain from content so that it will get picked up properly by chrome_main.
R=jam@chromium.org
BUG=90442
Review URL: http://codereview.chromium.org/7841009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@100809 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/app/chrome_main.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/app/chrome_main.cc b/chrome/app/chrome_main.cc index bc50d049..be83bbe 100644 --- a/chrome/app/chrome_main.cc +++ b/chrome/app/chrome_main.cc @@ -29,6 +29,7 @@ #include "content/app/content_main.h" #include "content/app/content_main_delegate.h" #include "content/browser/renderer_host/render_process_host.h" +#include "content/renderer/renderer_main.h" #include "content/common/content_client.h" #include "content/common/content_counters.h" #include "content/common/content_paths.h" @@ -98,7 +99,6 @@ base::LazyInstance<chrome::ChromeContentUtilityClient> base::LazyInstance<chrome::ChromeContentPluginClient> g_chrome_content_plugin_client(base::LINKER_INITIALIZED); -extern int RendererMain(const MainFunctionParams&); extern int NaClMain(const MainFunctionParams&); extern int ProfileImportMain(const MainFunctionParams&); extern int ServiceProcessMain(const MainFunctionParams&); |