| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 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 | 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_TREES_REMOTE_CHANNEL_MAIN_H_ | 5 #ifndef CC_TREES_REMOTE_CHANNEL_MAIN_H_ |
| 6 #define CC_TREES_REMOTE_CHANNEL_MAIN_H_ | 6 #define CC_TREES_REMOTE_CHANNEL_MAIN_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "cc/base/cc_export.h" | 9 #include "cc/base/cc_export.h" |
| 10 #include "cc/trees/channel_main.h" | 10 #include "cc/trees/channel_main.h" |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 void MainFrameWillHappenOnImplForTesting( | 44 void MainFrameWillHappenOnImplForTesting( |
| 45 CompletionEvent* completion, | 45 CompletionEvent* completion, |
| 46 bool* main_frame_will_happen) override; | 46 bool* main_frame_will_happen) override; |
| 47 void SetNeedsRedrawOnImpl(const gfx::Rect& damage_rect) override; | 47 void SetNeedsRedrawOnImpl(const gfx::Rect& damage_rect) override; |
| 48 void SetNeedsCommitOnImpl() override; | 48 void SetNeedsCommitOnImpl() override; |
| 49 void BeginMainFrameAbortedOnImpl( | 49 void BeginMainFrameAbortedOnImpl( |
| 50 CommitEarlyOutReason reason, | 50 CommitEarlyOutReason reason, |
| 51 base::TimeTicks main_thread_start_time, | 51 base::TimeTicks main_thread_start_time, |
| 52 std::vector<std::unique_ptr<SwapPromise>> swap_promises) override; | 52 std::vector<std::unique_ptr<SwapPromise>> swap_promises) override; |
| 53 void NotifyReadyToCommitOnImpl(CompletionEvent* completion, | 53 void NotifyReadyToCommitOnImpl(CompletionEvent* completion, |
| 54 LayerTreeHost* layer_tree_host, | 54 LayerTreeHostInProcess* layer_tree_host, |
| 55 base::TimeTicks main_thread_start_time, | 55 base::TimeTicks main_thread_start_time, |
| 56 bool hold_commit_for_activation) override; | 56 bool hold_commit_for_activation) override; |
| 57 void SynchronouslyInitializeImpl( | 57 void SynchronouslyInitializeImpl( |
| 58 LayerTreeHost* layer_tree_host, | 58 LayerTreeHostInProcess* layer_tree_host, |
| 59 std::unique_ptr<BeginFrameSource> external_begin_frame_source) override; | 59 std::unique_ptr<BeginFrameSource> external_begin_frame_source) override; |
| 60 void SynchronouslyCloseImpl() override; | 60 void SynchronouslyCloseImpl() override; |
| 61 | 61 |
| 62 // RemoteProtoChannel::ProtoReceiver implementation | 62 // RemoteProtoChannel::ProtoReceiver implementation |
| 63 void OnProtoReceived( | 63 void OnProtoReceived( |
| 64 std::unique_ptr<proto::CompositorMessage> proto) override; | 64 std::unique_ptr<proto::CompositorMessage> proto) override; |
| 65 | 65 |
| 66 protected: | 66 protected: |
| 67 RemoteChannelMain(RemoteProtoChannel* remote_proto_channel, | 67 RemoteChannelMain(RemoteProtoChannel* remote_proto_channel, |
| 68 ProxyMain* proxy_main, | 68 ProxyMain* proxy_main, |
| (...skipping 14 matching lines...) Expand all Loading... |
| 83 bool initialized_; | 83 bool initialized_; |
| 84 | 84 |
| 85 base::WeakPtrFactory<RemoteChannelMain> weak_factory_; | 85 base::WeakPtrFactory<RemoteChannelMain> weak_factory_; |
| 86 | 86 |
| 87 DISALLOW_COPY_AND_ASSIGN(RemoteChannelMain); | 87 DISALLOW_COPY_AND_ASSIGN(RemoteChannelMain); |
| 88 }; | 88 }; |
| 89 | 89 |
| 90 } // namespace cc | 90 } // namespace cc |
| 91 | 91 |
| 92 #endif // CC_TREES_REMOTE_CHANNEL_MAIN_H_ | 92 #endif // CC_TREES_REMOTE_CHANNEL_MAIN_H_ |
| OLD | NEW |