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

Unified Diff: webkit/compositor_bindings/WebLayerImpl.h

Issue 11189043: cc: Rename cc classes and members to match filenames (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 2 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/WebLayerImpl.h
diff --git a/webkit/compositor_bindings/WebLayerImpl.h b/webkit/compositor_bindings/WebLayerImpl.h
index 88a433f597e3cc3ffa3b9c1f82fcf59901bb0f25..01a7bafdbfafe9f96fdcb6928a5bd37118d846e1 100644
--- a/webkit/compositor_bindings/WebLayerImpl.h
+++ b/webkit/compositor_bindings/WebLayerImpl.h
@@ -9,7 +9,7 @@
#include "third_party/WebKit/Source/Platform/chromium/public/WebLayer.h"
namespace cc {
-class LayerChromium;
+class Layer;
}
namespace WebKit {
@@ -17,7 +17,7 @@ namespace WebKit {
class WebLayerImpl : public WebLayer {
public:
WebLayerImpl();
- explicit WebLayerImpl(scoped_refptr<cc::LayerChromium>);
+ explicit WebLayerImpl(scoped_refptr<cc::Layer>);
virtual ~WebLayerImpl();
// WebLayer implementation.
@@ -90,10 +90,10 @@ public:
virtual bool fixedToContainerLayer() const;
virtual void setScrollClient(WebLayerScrollClient*) OVERRIDE;
- cc::LayerChromium* layer() const;
+ cc::Layer* layer() const;
protected:
- scoped_refptr<cc::LayerChromium> m_layer;
+ scoped_refptr<cc::Layer> m_layer;
};
} // namespace WebKit

Powered by Google App Engine
This is Rietveld 408576698