| Index: cc/test/proxy_impl_for_test.h
|
| diff --git a/cc/test/proxy_impl_for_test.h b/cc/test/proxy_impl_for_test.h
|
| index 4b807cce6f738b6ea62948d2cccf9374a0303639..891923238466dda12b9494e94ad099ac1e490187 100644
|
| --- a/cc/test/proxy_impl_for_test.h
|
| +++ b/cc/test/proxy_impl_for_test.h
|
| @@ -14,12 +14,12 @@ namespace cc {
|
| // actions.
|
| class ProxyImplForTest : public ProxyImpl {
|
| public:
|
| - static scoped_ptr<ProxyImplForTest> Create(
|
| + static std::unique_ptr<ProxyImplForTest> Create(
|
| TestHooks* test_hooks,
|
| ChannelImpl* channel_impl,
|
| LayerTreeHost* layer_tree_host,
|
| TaskRunnerProvider* task_runner_provider,
|
| - scoped_ptr<BeginFrameSource> external_begin_frame_source);
|
| + std::unique_ptr<BeginFrameSource> external_begin_frame_source);
|
|
|
| using ProxyImpl::PostAnimationEventsToMainThreadOnImplThread;
|
| using ProxyImpl::DidLoseOutputSurfaceOnImplThread;
|
| @@ -35,11 +35,12 @@ class ProxyImplForTest : public ProxyImpl {
|
| return last_begin_main_frame_args_;
|
| }
|
|
|
| - ProxyImplForTest(TestHooks* test_hooks,
|
| - ChannelImpl* channel_impl,
|
| - LayerTreeHost* layer_tree_host,
|
| - TaskRunnerProvider* task_runner_provider,
|
| - scoped_ptr<BeginFrameSource> external_begin_frame_source);
|
| + ProxyImplForTest(
|
| + TestHooks* test_hooks,
|
| + ChannelImpl* channel_impl,
|
| + LayerTreeHost* layer_tree_host,
|
| + TaskRunnerProvider* task_runner_provider,
|
| + std::unique_ptr<BeginFrameSource> external_begin_frame_source);
|
|
|
| void ScheduledActionSendBeginMainFrame(const BeginFrameArgs& args) override;
|
| DrawResult ScheduledActionDrawAndSwapIfPossible() override;
|
|
|