| OLD | NEW |
| (Empty) |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CC_TEST_REMOTE_CHANNEL_IMPL_FOR_TEST_H_ | |
| 6 #define CC_TEST_REMOTE_CHANNEL_IMPL_FOR_TEST_H_ | |
| 7 | |
| 8 #include "base/macros.h" | |
| 9 #include "cc/test/proxy_impl_for_test.h" | |
| 10 #include "cc/test/test_hooks.h" | |
| 11 #include "cc/trees/remote_channel_impl.h" | |
| 12 | |
| 13 namespace cc { | |
| 14 | |
| 15 class RemoteChannelImplForTest : public RemoteChannelImpl { | |
| 16 public: | |
| 17 static std::unique_ptr<RemoteChannelImplForTest> Create( | |
| 18 TestHooks* test_hooks, | |
| 19 LayerTreeHost* layer_tree_host, | |
| 20 RemoteProtoChannel* remote_proto_channel, | |
| 21 TaskRunnerProvider* task_runner_provider); | |
| 22 | |
| 23 ProxyImplForTest* proxy_impl_for_test() const { return proxy_impl_for_test_; } | |
| 24 | |
| 25 private: | |
| 26 RemoteChannelImplForTest(TestHooks* test_hooks, | |
| 27 LayerTreeHost* layer_tree_host, | |
| 28 RemoteProtoChannel* remote_proto_channel, | |
| 29 TaskRunnerProvider* task_runner_provider); | |
| 30 | |
| 31 std::unique_ptr<ProxyImpl> CreateProxyImpl( | |
| 32 ChannelImpl* channel_impl, | |
| 33 LayerTreeHost* layer_tree_host, | |
| 34 TaskRunnerProvider* task_runner_provider, | |
| 35 std::unique_ptr<BeginFrameSource> external_begin_frame_source) override; | |
| 36 | |
| 37 TestHooks* test_hooks_; | |
| 38 ProxyImplForTest* proxy_impl_for_test_; | |
| 39 }; | |
| 40 | |
| 41 } // namespace cc | |
| 42 | |
| 43 #endif // CC_TEST_REMOTE_CHANNEL_IMPL_FOR_TEST_H_ | |
| OLD | NEW |