OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "content/public/test/content_test_suite_base.h" | 5 #include "content/public/test/content_test_suite_base.h" |
6 | 6 |
| 7 #include <memory> |
| 8 |
7 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
8 #include "base/macros.h" | 10 #include "base/macros.h" |
9 #include "base/memory/scoped_ptr.h" | |
10 #include "base/metrics/statistics_recorder.h" | 11 #include "base/metrics/statistics_recorder.h" |
11 #include "base/test/test_suite.h" | 12 #include "base/test/test_suite.h" |
12 #include "base/threading/sequenced_worker_pool.h" | 13 #include "base/threading/sequenced_worker_pool.h" |
13 #include "build/build_config.h" | 14 #include "build/build_config.h" |
14 #include "content/browser/browser_thread_impl.h" | 15 #include "content/browser/browser_thread_impl.h" |
15 #include "content/browser/gpu/gpu_process_host.h" | 16 #include "content/browser/gpu/gpu_process_host.h" |
16 #include "content/browser/renderer_host/render_process_host_impl.h" | 17 #include "content/browser/renderer_host/render_process_host_impl.h" |
17 #include "content/browser/utility_process_host_impl.h" | 18 #include "content/browser/utility_process_host_impl.h" |
18 #include "content/common/url_schemes.h" | 19 #include "content/common/url_schemes.h" |
19 #include "content/gpu/in_process_gpu_thread.h" | 20 #include "content/gpu/in_process_gpu_thread.h" |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 | 118 |
118 void ContentTestSuiteBase::RegisterInProcessThreads() { | 119 void ContentTestSuiteBase::RegisterInProcessThreads() { |
119 UtilityProcessHostImpl::RegisterUtilityMainThreadFactory( | 120 UtilityProcessHostImpl::RegisterUtilityMainThreadFactory( |
120 CreateInProcessUtilityThread); | 121 CreateInProcessUtilityThread); |
121 RenderProcessHostImpl::RegisterRendererMainThreadFactory( | 122 RenderProcessHostImpl::RegisterRendererMainThreadFactory( |
122 CreateInProcessRendererThread); | 123 CreateInProcessRendererThread); |
123 GpuProcessHost::RegisterGpuMainThreadFactory(CreateInProcessGpuThread); | 124 GpuProcessHost::RegisterGpuMainThreadFactory(CreateInProcessGpuThread); |
124 } | 125 } |
125 | 126 |
126 } // namespace content | 127 } // namespace content |
OLD | NEW |