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/tiled_layer_impl.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/tiled_layer_impl.h')
-rw-r--r-- | cc/tiled_layer_impl.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/cc/tiled_layer_impl.h b/cc/tiled_layer_impl.h index 848f9a7..9946e20 100644 --- a/cc/tiled_layer_impl.h +++ b/cc/tiled_layer_impl.h @@ -10,33 +10,33 @@ namespace cc { -class CCLayerTilingData; +class LayerTilingData; class DrawableTile; -class CCTiledLayerImpl : public CCLayerImpl { +class TiledLayerImpl : public LayerImpl { public: - static scoped_ptr<CCTiledLayerImpl> create(int id) + static scoped_ptr<TiledLayerImpl> create(int id) { - return make_scoped_ptr(new CCTiledLayerImpl(id)); + return make_scoped_ptr(new TiledLayerImpl(id)); } - virtual ~CCTiledLayerImpl(); + virtual ~TiledLayerImpl(); - virtual void appendQuads(CCQuadSink&, CCAppendQuadsData&) OVERRIDE; + virtual void appendQuads(QuadSink&, AppendQuadsData&) OVERRIDE; - virtual CCResourceProvider::ResourceId contentsResourceId() const OVERRIDE; + virtual ResourceProvider::ResourceId contentsResourceId() const OVERRIDE; virtual void dumpLayerProperties(std::string*, int indent) const OVERRIDE; void setSkipsDraw(bool skipsDraw) { m_skipsDraw = skipsDraw; } - void setTilingData(const CCLayerTilingData& tiler); - void pushTileProperties(int, int, CCResourceProvider::ResourceId, const IntRect& opaqueRect, bool contentsSwizzled); + void setTilingData(const LayerTilingData& tiler); + void pushTileProperties(int, int, ResourceProvider::ResourceId, const IntRect& opaqueRect, bool contentsSwizzled); void pushInvalidTile(int, int); virtual Region visibleContentOpaqueRegion() const OVERRIDE; virtual void didLoseContext() OVERRIDE; protected: - explicit CCTiledLayerImpl(int id); + explicit TiledLayerImpl(int id); // Exposed for testing. bool hasTileAt(int, int) const; bool hasResourceIdForTileAt(int, int) const; @@ -50,7 +50,7 @@ private: bool m_skipsDraw; - scoped_ptr<CCLayerTilingData> m_tiler; + scoped_ptr<LayerTilingData> m_tiler; }; } |