summaryrefslogtreecommitdiffstats
path: root/cc/io_surface_layer.h
diff options
context:
space:
mode:
authorenne@chromium.org <enne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-10-19 21:22:42 +0000
committerenne@chromium.org <enne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-10-19 21:22:42 +0000
commitc753e25a8b4366c44134a8c21b9ed3392bf48608 (patch)
treef378c8a762caccf60856a1670ae33dfd638b9453 /cc/io_surface_layer.h
parent503160f80568f024fa712e280bb1a4e1e6ca1ec3 (diff)
downloadchromium_src-c753e25a8b4366c44134a8c21b9ed3392bf48608.zip
chromium_src-c753e25a8b4366c44134a8c21b9ed3392bf48608.tar.gz
chromium_src-c753e25a8b4366c44134a8c21b9ed3392bf48608.tar.bz2
Revert "cc: Rename cc classes and members to match filenames"
This reverts commit 184fac5add06d5f4670fa6be4a4d3b39232d51bb. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@163059 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/io_surface_layer.h')
-rw-r--r--cc/io_surface_layer.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/cc/io_surface_layer.h b/cc/io_surface_layer.h
index 9d728a0..afea279 100644
--- a/cc/io_surface_layer.h
+++ b/cc/io_surface_layer.h
@@ -9,21 +9,21 @@
namespace cc {
-class IOSurfaceLayer : public Layer {
+class IOSurfaceLayerChromium : public LayerChromium {
public:
- static scoped_refptr<IOSurfaceLayer> create();
+ static scoped_refptr<IOSurfaceLayerChromium> create();
void setIOSurfaceProperties(uint32_t ioSurfaceId, const IntSize&);
- virtual scoped_ptr<LayerImpl> createLayerImpl() OVERRIDE;
+ virtual scoped_ptr<CCLayerImpl> createCCLayerImpl() OVERRIDE;
virtual bool drawsContent() const OVERRIDE;
- virtual void pushPropertiesTo(LayerImpl*) OVERRIDE;
+ virtual void pushPropertiesTo(CCLayerImpl*) OVERRIDE;
protected:
- IOSurfaceLayer();
+ IOSurfaceLayerChromium();
private:
- virtual ~IOSurfaceLayer();
+ virtual ~IOSurfaceLayerChromium();
uint32_t m_ioSurfaceId;
IntSize m_ioSurfaceSize;