Index: cc/trees/channel_main.h |
diff --git a/cc/trees/channel_main.h b/cc/trees/channel_main.h |
index c4cdcc632d8a2be06133c95882afa4b162ed7405..a0735fc7a017ba90ae212df96335ba00f9dbcb82 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. |
// |
@@ -23,6 +23,16 @@ class CC_EXPORT ChannelMain { |
public: |
// Interface for commands sent to the ProxyImpl |
virtual void SetThrottleFrameProductionOnImpl(bool throttle) = 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() {} |
}; |