Index: webkit/compositor_bindings/WebContentLayerImpl.h |
diff --git a/webkit/compositor_bindings/WebContentLayerImpl.h b/webkit/compositor_bindings/WebContentLayerImpl.h |
index aee3906cef25650f50d86db4f076aa549d6c9441..0eb1a8124f85210f758d8b8ae40feff3739cbde0 100644 |
--- a/webkit/compositor_bindings/WebContentLayerImpl.h |
+++ b/webkit/compositor_bindings/WebContentLayerImpl.h |
@@ -10,11 +10,16 @@ |
#include <public/WebContentLayer.h> |
#include <wtf/OwnPtr.h> |
+namespace cc { |
+class IntRect; |
+class FloatRect; |
+} |
+ |
namespace WebKit { |
class WebContentLayerClient; |
class WebContentLayerImpl : public WebContentLayer, |
- public WebCore::ContentLayerChromiumClient { |
+ public cc::ContentLayerChromiumClient { |
public: |
explicit WebContentLayerImpl(WebContentLayerClient*); |
@@ -30,7 +35,7 @@ protected: |
virtual ~WebContentLayerImpl(); |
// ContentLayerChromiumClient implementation. |
- virtual void paintContents(SkCanvas*, const WebCore::IntRect& clip, WebCore::FloatRect& opaque) OVERRIDE; |
+ virtual void paintContents(SkCanvas*, const cc::IntRect& clip, cc::FloatRect& opaque) OVERRIDE; |
OwnPtr<WebLayerImpl> m_layer; |
WebContentLayerClient* m_client; |