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

Unified Diff: webkit/compositor_bindings/WebLayerImpl.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
« no previous file with comments | « webkit/compositor_bindings/WebImageLayerImpl.cpp ('k') | webkit/compositor_bindings/WebLayerImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/compositor_bindings/WebLayerImpl.h
diff --git a/webkit/compositor_bindings/WebLayerImpl.h b/webkit/compositor_bindings/WebLayerImpl.h
index b34d43b8592d205c4a3c721506af9e543eaa2500..e6bcefe486e6c99cbb1b5bfd1dd178a468560578 100644
--- a/webkit/compositor_bindings/WebLayerImpl.h
+++ b/webkit/compositor_bindings/WebLayerImpl.h
@@ -9,7 +9,7 @@
#include <wtf/PassRefPtr.h>
#include <wtf/RefPtr.h>
-namespace WebCore {
+namespace cc {
class LayerChromium;
}
@@ -18,7 +18,7 @@ namespace WebKit {
class WebLayerImpl : public WebLayer {
public:
WebLayerImpl();
- explicit WebLayerImpl(PassRefPtr<WebCore::LayerChromium>);
+ explicit WebLayerImpl(PassRefPtr<cc::LayerChromium>);
virtual ~WebLayerImpl();
// WebLayer implementation.
@@ -83,10 +83,10 @@ public:
virtual void setFixedToContainerLayer(bool) OVERRIDE;
virtual void setScrollClient(WebLayerScrollClient*) OVERRIDE;
- WebCore::LayerChromium* layer() const;
+ cc::LayerChromium* layer() const;
protected:
- RefPtr<WebCore::LayerChromium> m_layer;
+ RefPtr<cc::LayerChromium> m_layer;
};
} // namespace WebKit
« no previous file with comments | « webkit/compositor_bindings/WebImageLayerImpl.cpp ('k') | webkit/compositor_bindings/WebLayerImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698