Index: cc/trees/channel_main.h |
diff --git a/cc/trees/channel_main.h b/cc/trees/channel_main.h |
index 964d1aa5db913b3f1391f36e78807bf345bad37d..1ece6c4094a0dd0db0b8c3433f70621b2d1978cb 100644 |
--- a/cc/trees/channel_main.h |
+++ b/cc/trees/channel_main.h |
@@ -6,9 +6,9 @@ |
#define CC_TREES_CHANNEL_MAIN_H_ |
#include "cc/base/cc_export.h" |
+#include "cc/output/output_surface.h" |
namespace cc { |
- |
// ChannelMain and ChannelImpl provide an abstract communication layer for |
// the main and impl side of the compositor. |
// |
@@ -24,6 +24,16 @@ class CC_EXPORT ChannelMain { |
// Interface for commands sent to the ProxyImpl |
virtual void SetThrottleFrameProductionOnImpl(bool throttle) = 0; |
virtual void SetLayerTreeHostClientReadyOnImpl() = 0; |
+ virtual void InitializeOutputSurfaceOnImpl(OutputSurface* output_surface) = 0; |
+ virtual void MainThreadHasStoppedFlingingOnImpl() = 0; |
+ virtual void SetInputThrottledUntilCommitOnImpl(bool is_throttled) = 0; |
+ virtual void SetDeferCommitsOnImpl(bool defer_commits) = 0; |
+ virtual void FinishAllRenderingOnImpl() = 0; |
+ virtual void SetVisibleOnImpl(bool visible) = 0; |
+ virtual void ReleaseOutputSurfaceOnImpl() = 0; |
+ virtual void FinishGLOnImpl() = 0; |
+ virtual void MainFrameWillHappenOnImplForTesting( |
+ bool* main_frame_will_happen) = 0; |
virtual ~ChannelMain() {} |
}; |