Index: cc/CCRenderer.h |
diff --git a/cc/CCRenderer.h b/cc/CCRenderer.h |
index 740ba0b293e7588b133829a21fd2f7feef445a2f..3836268b518151532d2503b98ce8b2021f04af41 100644 |
--- a/cc/CCRenderer.h |
+++ b/cc/CCRenderer.h |
@@ -12,9 +12,14 @@ |
#include "IntRect.h" |
#include <wtf/PassRefPtr.h> |
+namespace WebKit { |
+struct WebCompositorFrameAck; |
+} |
+ |
namespace cc { |
class CCScopedTexture; |
+struct CompositorFrameAck; |
class CCRendererClient { |
public: |
@@ -67,6 +72,7 @@ public: |
virtual bool isContextLost(); |
virtual void setVisible(bool) = 0; |
+ virtual void onSendFrameToParentCompositorAck(const CompositorFrameAck&) { } |
protected: |
explicit CCRenderer(CCRendererClient* client) |