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

Unified Diff: cc/checkerboard_draw_quad.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/checkerboard_draw_quad.h
diff --git a/cc/checkerboard_draw_quad.h b/cc/checkerboard_draw_quad.h
index c36bab0a5bbff306d1b13e3c240411dbd2683271..0ac4a87595838d682f32cc8aab9004e7d7b6957e 100644
--- a/cc/checkerboard_draw_quad.h
+++ b/cc/checkerboard_draw_quad.h
@@ -13,15 +13,15 @@ namespace cc {
#pragma pack(push, 4)
-class CCCheckerboardDrawQuad : public CCDrawQuad {
+class CheckerboardDrawQuad : public DrawQuad {
public:
- static scoped_ptr<CCCheckerboardDrawQuad> create(const CCSharedQuadState*, const IntRect&, SkColor);
+ static scoped_ptr<CheckerboardDrawQuad> create(const SharedQuadState*, const IntRect&, SkColor);
SkColor color() const { return m_color; };
- static const CCCheckerboardDrawQuad* materialCast(const CCDrawQuad*);
+ static const CheckerboardDrawQuad* materialCast(const DrawQuad*);
private:
- CCCheckerboardDrawQuad(const CCSharedQuadState*, const IntRect&, SkColor);
+ CheckerboardDrawQuad(const SharedQuadState*, const IntRect&, SkColor);
SkColor m_color;
};

Powered by Google App Engine
This is Rietveld 408576698