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

Unified Diff: cc/io_surface_layer.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: cc/io_surface_layer.h
diff --git a/cc/io_surface_layer.h b/cc/io_surface_layer.h
index afea279b4cd58dfd0ef9200b90ab0c8eacebf35e..9d728a010e9e86aff4392b928cef09efdfdb443c 100644
--- a/cc/io_surface_layer.h
+++ b/cc/io_surface_layer.h
@@ -9,21 +9,21 @@
namespace cc {
-class IOSurfaceLayerChromium : public LayerChromium {
+class IOSurfaceLayer : public Layer {
public:
- static scoped_refptr<IOSurfaceLayerChromium> create();
+ static scoped_refptr<IOSurfaceLayer> create();
void setIOSurfaceProperties(uint32_t ioSurfaceId, const IntSize&);
- virtual scoped_ptr<CCLayerImpl> createCCLayerImpl() OVERRIDE;
+ virtual scoped_ptr<LayerImpl> createLayerImpl() OVERRIDE;
virtual bool drawsContent() const OVERRIDE;
- virtual void pushPropertiesTo(CCLayerImpl*) OVERRIDE;
+ virtual void pushPropertiesTo(LayerImpl*) OVERRIDE;
protected:
- IOSurfaceLayerChromium();
+ IOSurfaceLayer();
private:
- virtual ~IOSurfaceLayerChromium();
+ virtual ~IOSurfaceLayer();
uint32_t m_ioSurfaceId;
IntSize m_ioSurfaceSize;
« cc/active_animation.h ('K') | « cc/io_surface_draw_quad.cc ('k') | cc/io_surface_layer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698