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

Unified Diff: cc/layer_tiling_data.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/layer_tiling_data.h
diff --git a/cc/layer_tiling_data.h b/cc/layer_tiling_data.h
index 2be7b4c097896c4252b78b430fc9801667fcfa49..97c59fdb3ca503ddca7c7dbf6628f48a859562dc 100644
--- a/cc/layer_tiling_data.h
+++ b/cc/layer_tiling_data.h
@@ -16,13 +16,13 @@
namespace cc {
-class CCLayerTilingData {
+class LayerTilingData {
public:
enum BorderTexelOption { HasBorderTexels, NoBorderTexels };
- ~CCLayerTilingData();
+ ~LayerTilingData();
- static scoped_ptr<CCLayerTilingData> create(const IntSize& tileSize, BorderTexelOption);
+ static scoped_ptr<LayerTilingData> create(const IntSize& tileSize, BorderTexelOption);
bool hasEmptyBounds() const { return m_tilingData.hasEmptyBounds(); }
int numTilesX() const { return m_tilingData.numTilesX(); }
@@ -39,7 +39,7 @@ public:
bool isEmpty() const { return hasEmptyBounds() || !tiles().size(); }
- const CCLayerTilingData& operator=(const CCLayerTilingData&);
+ const LayerTilingData& operator=(const LayerTilingData&);
class Tile {
public:
@@ -77,7 +77,7 @@ public:
void reset();
protected:
- CCLayerTilingData(const IntSize& tileSize, BorderTexelOption);
+ LayerTilingData(const IntSize& tileSize, BorderTexelOption);
TileMap m_tiles;
TilingData m_tilingData;

Powered by Google App Engine
This is Rietveld 408576698