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

Side by Side Diff: cc/test/threaded_channel_for_test.h

Issue 1866203004: Convert //cc from scoped_ptr to std::unique_ptr. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: scopedptrcc: rebase 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 | « cc/test/test_web_graphics_context_3d_unittest.cc ('k') | cc/test/threaded_channel_for_test.cc » ('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 2011 The Chromium Authors. All rights reserved. 1 // Copyright 2011 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 #ifndef CC_TEST_THREADED_CHANNEL_FOR_TEST_H_ 5 #ifndef CC_TEST_THREADED_CHANNEL_FOR_TEST_H_
6 #define CC_TEST_THREADED_CHANNEL_FOR_TEST_H_ 6 #define CC_TEST_THREADED_CHANNEL_FOR_TEST_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "cc/test/test_hooks.h" 9 #include "cc/test/test_hooks.h"
10 #include "cc/trees/threaded_channel.h" 10 #include "cc/trees/threaded_channel.h"
11 11
12 namespace cc { 12 namespace cc {
13 class ProxyImplForTest; 13 class ProxyImplForTest;
14 14
15 // ThreadedChannel that notifies |test_hooks| of internal actions by ProxyImpl. 15 // ThreadedChannel that notifies |test_hooks| of internal actions by ProxyImpl.
16 class ThreadedChannelForTest : public ThreadedChannel { 16 class ThreadedChannelForTest : public ThreadedChannel {
17 public: 17 public:
18 static scoped_ptr<ThreadedChannelForTest> Create( 18 static std::unique_ptr<ThreadedChannelForTest> Create(
19 TestHooks* test_hooks, 19 TestHooks* test_hooks,
20 ProxyMain* proxy_main, 20 ProxyMain* proxy_main,
21 TaskRunnerProvider* task_runner_provider); 21 TaskRunnerProvider* task_runner_provider);
22 22
23 ProxyImplForTest* proxy_impl_for_test() { return proxy_impl_for_test_; } 23 ProxyImplForTest* proxy_impl_for_test() { return proxy_impl_for_test_; }
24 24
25 private: 25 private:
26 ThreadedChannelForTest(TestHooks* test_hooks, 26 ThreadedChannelForTest(TestHooks* test_hooks,
27 ProxyMain* proxy_main, 27 ProxyMain* proxy_main,
28 TaskRunnerProvider* task_runner_provider); 28 TaskRunnerProvider* task_runner_provider);
29 29
30 scoped_ptr<ProxyImpl> CreateProxyImpl( 30 std::unique_ptr<ProxyImpl> CreateProxyImpl(
31 ChannelImpl* channel_impl, 31 ChannelImpl* channel_impl,
32 LayerTreeHost* layer_tree_host, 32 LayerTreeHost* layer_tree_host,
33 TaskRunnerProvider* task_runner_provider, 33 TaskRunnerProvider* task_runner_provider,
34 scoped_ptr<BeginFrameSource> external_begin_frame_source) override; 34 std::unique_ptr<BeginFrameSource> external_begin_frame_source) override;
35 35
36 TestHooks* test_hooks_; 36 TestHooks* test_hooks_;
37 ProxyImplForTest* proxy_impl_for_test_; 37 ProxyImplForTest* proxy_impl_for_test_;
38 }; 38 };
39 39
40 } // namespace cc 40 } // namespace cc
41 41
42 #endif // CC_TEST_THREADED_CHANNEL_FOR_TEST_H_ 42 #endif // CC_TEST_THREADED_CHANNEL_FOR_TEST_H_
OLDNEW
« no previous file with comments | « cc/test/test_web_graphics_context_3d_unittest.cc ('k') | cc/test/threaded_channel_for_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698