Index: webkit/compositor_bindings/web_compositor_support_impl.h |
diff --git a/webkit/compositor_bindings/web_compositor_support_impl.h b/webkit/compositor_bindings/web_compositor_support_impl.h |
index ac7e2767188e1a1103d51378958c8657394834e1..bc0f1e056e1a017e06bb509886978129f8a98fc2 100644 |
--- a/webkit/compositor_bindings/web_compositor_support_impl.h |
+++ b/webkit/compositor_bindings/web_compositor_support_impl.h |
@@ -5,6 +5,7 @@ |
#ifndef WEBKIT_COMPOSITOR_BINDINGS_WEB_COMPOSITOR_SUPPORT_IMPL_H_ |
#define WEBKIT_COMPOSITOR_BINDINGS_WEB_COMPOSITOR_SUPPORT_IMPL_H_ |
+#include "cc/compositor_support_state.h" |
#include "third_party/WebKit/Source/Platform/chromium/public/WebLayer.h" |
#include "third_party/WebKit/Source/Platform/chromium/public/WebCompositorSupport.h" |
@@ -15,7 +16,7 @@ class WebCompositorSupportImpl : public WebKit::WebCompositorSupport { |
WebCompositorSupportImpl(); |
virtual ~WebCompositorSupportImpl(); |
- virtual void initialize(WebKit::WebThread* thread); |
+ virtual void initialize(WebKit::WebThread* implThread); |
virtual bool isThreadingEnabled(); |
virtual void shutdown(); |
virtual void setPerTilePaintingEnabled(bool enabled); |
@@ -50,6 +51,9 @@ class WebCompositorSupportImpl : public WebKit::WebCompositorSupport { |
createFloatAnimationCurve(); |
virtual WebKit::WebTransformAnimationCurve* |
createTransformAnimationCurve(); |
+ |
+ private: |
+ CompositorSupportState state_; |
}; |
} // namespace webkit |