Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1085)

Unified Diff: webkit/compositor_bindings/WebContentLayerImpl.h

Issue 10914268: Change cc files from namespace WebCore to cc (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
« no previous file with comments | « webkit/compositor_bindings/WebCompositorImpl.cpp ('k') | webkit/compositor_bindings/WebContentLayerImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698