Index: content/app/content_main_runner.cc |
diff --git a/content/app/content_main_runner.cc b/content/app/content_main_runner.cc |
index 07e846fb3811a7389c1ae2d59d34398d110620c8..3f1bc1cc6ccd29107c25e76416c63df9afa8bbd8 100644 |
--- a/content/app/content_main_runner.cc |
+++ b/content/app/content_main_runner.cc |
@@ -29,7 +29,7 @@ |
#include "content/browser/gpu/gpu_process_host.h" |
#include "content/common/set_process_title.h" |
#include "content/common/url_schemes.h" |
-#include "content/gpu/gpu_main_thread.h" |
+#include "content/gpu/in_process_gpu_thread.h" |
#include "content/public/app/content_main_delegate.h" |
#include "content/public/app/startup_helper_win.h" |
#include "content/public/browser/content_browser_client.h" |
@@ -41,8 +41,8 @@ |
#include "content/public/common/content_switches.h" |
#include "content/public/common/main_function_params.h" |
#include "content/public/common/sandbox_init.h" |
-#include "content/renderer/renderer_main_thread.h" |
-#include "content/utility/utility_main_thread.h" |
+#include "content/renderer/in_process_renderer_thread.h" |
+#include "content/utility/in_process_utility_thread.h" |
#include "crypto/nss_util.h" |
#include "ipc/ipc_switches.h" |
#include "media/base/media.h" |
@@ -431,10 +431,12 @@ int RunNamedProcessTypeMain( |
}; |
#if !defined(CHROME_MULTIPLE_DLL_BROWSER) |
- UtilityProcessHost::RegisterUtilityMainThreadFactory(CreateUtilityMainThread); |
+ UtilityProcessHost::RegisterUtilityMainThreadFactory( |
+ CreateInProcessUtilityThread); |
RenderProcessHost::RegisterRendererMainThreadFactory( |
- CreateRendererMainThread); |
- GpuProcessHost::RegisterGpuMainThreadFactory(CreateGpuMainThread); |
+ CreateInProcessRendererThread); |
+ GpuProcessHost::RegisterGpuMainThreadFactory( |
+ CreateInProcessGpuThread); |
#endif |
for (size_t i = 0; i < arraysize(kMainFunctions); ++i) { |