Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(563)

Unified Diff: content/public/test/content_test_suite_base.cc

Issue 23452016: Fix names of in-process threads, tidy gpu DEPS (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: deps for webview Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/gpu/in_process_gpu_thread.cc ('k') | content/renderer/in_process_renderer_thread.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/test/content_test_suite_base.cc
diff --git a/content/public/test/content_test_suite_base.cc b/content/public/test/content_test_suite_base.cc
index ce6eac3ab831aac820e81cf7fcbf09d38c908ee8..27c9c636225e1b4717ca8db5d22f59268dce36e7 100644
--- a/content/public/test/content_test_suite_base.cc
+++ b/content/public/test/content_test_suite_base.cc
@@ -12,13 +12,13 @@
#include "content/browser/browser_thread_impl.h"
#include "content/browser/gpu/gpu_process_host.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/browser/render_process_host.h"
#include "content/public/browser/utility_process_host.h"
#include "content/public/common/content_client.h"
#include "content/public/common/content_paths.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 "testing/gtest/include/gtest/gtest.h"
#include "ui/base/ui_base_paths.h"
@@ -70,10 +70,11 @@ void ContentTestSuiteBase::Initialize() {
#endif
#if !defined(OS_IOS)
- UtilityProcessHost::RegisterUtilityMainThreadFactory(CreateUtilityMainThread);
+ UtilityProcessHost::RegisterUtilityMainThreadFactory(
+ CreateInProcessUtilityThread);
RenderProcessHost::RegisterRendererMainThreadFactory(
- CreateRendererMainThread);
- GpuProcessHost::RegisterGpuMainThreadFactory(CreateGpuMainThread);
+ CreateInProcessRendererThread);
+ GpuProcessHost::RegisterGpuMainThreadFactory(CreateInProcessGpuThread);
if (external_libraries_enabled_)
media::InitializeMediaLibraryForTesting();
#endif
« no previous file with comments | « content/gpu/in_process_gpu_thread.cc ('k') | content/renderer/in_process_renderer_thread.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698