| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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_PROXY_IMPL_H_ | 5 #ifndef CC_TREES_PROXY_IMPL_H_ |
| 6 #define CC_TREES_PROXY_IMPL_H_ | 6 #define CC_TREES_PROXY_IMPL_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 void WillBeginImplFrame(const BeginFrameArgs& args) override; | 96 void WillBeginImplFrame(const BeginFrameArgs& args) override; |
| 97 void DidFinishImplFrame() override; | 97 void DidFinishImplFrame() override; |
| 98 void ScheduledActionSendBeginMainFrame(const BeginFrameArgs& args) override; | 98 void ScheduledActionSendBeginMainFrame(const BeginFrameArgs& args) override; |
| 99 DrawResult ScheduledActionDrawIfPossible() override; | 99 DrawResult ScheduledActionDrawIfPossible() override; |
| 100 DrawResult ScheduledActionDrawForced() override; | 100 DrawResult ScheduledActionDrawForced() override; |
| 101 void ScheduledActionCommit() override; | 101 void ScheduledActionCommit() override; |
| 102 void ScheduledActionActivateSyncTree() override; | 102 void ScheduledActionActivateSyncTree() override; |
| 103 void ScheduledActionBeginCompositorFrameSinkCreation() override; | 103 void ScheduledActionBeginCompositorFrameSinkCreation() override; |
| 104 void ScheduledActionPrepareTiles() override; | 104 void ScheduledActionPrepareTiles() override; |
| 105 void ScheduledActionInvalidateCompositorFrameSink() override; | 105 void ScheduledActionInvalidateCompositorFrameSink() override; |
| 106 void ScheduledActionPerformImplSideInvalidation() override; |
| 106 void SendBeginMainFrameNotExpectedSoon() override; | 107 void SendBeginMainFrameNotExpectedSoon() override; |
| 107 | 108 |
| 108 DrawResult DrawInternal(bool forced_draw); | 109 DrawResult DrawInternal(bool forced_draw); |
| 109 | 110 |
| 110 bool IsImplThread() const; | 111 bool IsImplThread() const; |
| 111 bool IsMainThreadBlocked() const; | 112 bool IsMainThreadBlocked() const; |
| 112 base::SingleThreadTaskRunner* MainThreadTaskRunner(); | 113 base::SingleThreadTaskRunner* MainThreadTaskRunner(); |
| 113 | 114 |
| 114 const int layer_tree_host_id_; | 115 const int layer_tree_host_id_; |
| 115 | 116 |
| (...skipping 29 matching lines...) Expand all Loading... |
| 145 | 146 |
| 146 // Used to post tasks to ProxyMain on the main thread. | 147 // Used to post tasks to ProxyMain on the main thread. |
| 147 base::WeakPtr<ProxyMain> proxy_main_weak_ptr_; | 148 base::WeakPtr<ProxyMain> proxy_main_weak_ptr_; |
| 148 | 149 |
| 149 DISALLOW_COPY_AND_ASSIGN(ProxyImpl); | 150 DISALLOW_COPY_AND_ASSIGN(ProxyImpl); |
| 150 }; | 151 }; |
| 151 | 152 |
| 152 } // namespace cc | 153 } // namespace cc |
| 153 | 154 |
| 154 #endif // CC_TREES_PROXY_IMPL_H_ | 155 #endif // CC_TREES_PROXY_IMPL_H_ |
| OLD | NEW |