diff options
author | enne@chromium.org <enne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-22 23:09:55 +0000 |
---|---|---|
committer | enne@chromium.org <enne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-22 23:09:55 +0000 |
commit | 96baf3e81b1df4b0836d70c3cded9795e63fa789 (patch) | |
tree | 4332d128a05777ae34641ca2f185b7b548330b8d /cc/io_surface_layer.h | |
parent | 1597399122fa6d8343dc6d5cdb771f95908c09b1 (diff) | |
download | chromium_src-96baf3e81b1df4b0836d70c3cded9795e63fa789.zip chromium_src-96baf3e81b1df4b0836d70c3cded9795e63fa789.tar.gz chromium_src-96baf3e81b1df4b0836d70c3cded9795e63fa789.tar.bz2 |
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
Diffstat (limited to 'cc/io_surface_layer.h')
-rw-r--r-- | cc/io_surface_layer.h | 12 |
1 files changed, 6 insertions, 6 deletions
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<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; |