Index: content/app/content_main_runner.cc |
diff --git a/content/app/content_main_runner.cc b/content/app/content_main_runner.cc |
index a8235c3385d328c78da00f783be8f4a31ded2936..e8d31b073ef1295c06ee5bae010eb11a29ceef75 100644 |
--- a/content/app/content_main_runner.cc |
+++ b/content/app/content_main_runner.cc |
@@ -121,6 +121,9 @@ extern int PpapiBrokerMain(const MainFunctionParams&); |
#endif |
extern int RendererMain(const content::MainFunctionParams&); |
extern int UtilityMain(const MainFunctionParams&); |
+#if defined(OS_ANDROID) |
+extern int DownloadMain(const MainFunctionParams&); |
+#endif |
} // namespace content |
namespace content { |
@@ -343,6 +346,9 @@ int RunNamedProcessTypeMain( |
{ switches::kUtilityProcess, UtilityMain }, |
{ switches::kRendererProcess, RendererMain }, |
{ switches::kGpuProcess, GpuMain }, |
+#if defined(OS_ANDROID) |
+ { switches::kDownloadProcess, DownloadMain}, |
+#endif |
#endif // !CHROME_MULTIPLE_DLL_BROWSER |
}; |