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

Side by Side Diff: content/public/test/content_test_suite_base.cc

Issue 1874903002: Convert //content from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix indent Created 4 years, 8 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 unified diff | Download patch
« no previous file with comments | « content/public/test/content_browser_test.h ('k') | content/public/test/layouttest_support.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « content/public/test/content_browser_test.h ('k') | content/public/test/layouttest_support.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698