From 96baf3e81b1df4b0836d70c3cded9795e63fa789 Mon Sep 17 00:00:00 2001 From: "enne@chromium.org" Date: Mon, 22 Oct 2012 23:09:55 +0000 Subject: cc: Rename cc classes and members to match filenames Fixed reland of https://chromiumcodereview.appspot.com/11189043/ TBR=jam@chromium.org,jamesr@chromium.org BUG=155413 Review URL: https://codereview.chromium.org/11231054 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@163429 0039d316-1c4b-4281-b951-d872f2087c98 --- cc/io_surface_layer.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'cc/io_surface_layer.h') diff --git a/cc/io_surface_layer.h b/cc/io_surface_layer.h index afea279..9d728a0 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 create(); + static scoped_refptr create(); void setIOSurfaceProperties(uint32_t ioSurfaceId, const IntSize&); - virtual scoped_ptr createCCLayerImpl() OVERRIDE; + virtual scoped_ptr 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; -- cgit v1.1