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

Unified Diff: cc/checkerboard_draw_quad.h

Issue 10984053: cc: Use ui/gfx geometry types for the CCRenderPass and CCDrawQuad classes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase 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
« no previous file with comments | « no previous file | cc/checkerboard_draw_quad.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/checkerboard_draw_quad.h
diff --git a/cc/checkerboard_draw_quad.h b/cc/checkerboard_draw_quad.h
index c36bab0a5bbff306d1b13e3c240411dbd2683271..23fcac920934c300840b8f200c0c78bc6b97a9ca 100644
--- a/cc/checkerboard_draw_quad.h
+++ b/cc/checkerboard_draw_quad.h
@@ -15,13 +15,13 @@ namespace cc {
class CCCheckerboardDrawQuad : public CCDrawQuad {
public:
- static scoped_ptr<CCCheckerboardDrawQuad> create(const CCSharedQuadState*, const IntRect&, SkColor);
+ static scoped_ptr<CCCheckerboardDrawQuad> create(const CCSharedQuadState*, const gfx::Rect&, SkColor);
SkColor color() const { return m_color; };
static const CCCheckerboardDrawQuad* materialCast(const CCDrawQuad*);
private:
- CCCheckerboardDrawQuad(const CCSharedQuadState*, const IntRect&, SkColor);
+ CCCheckerboardDrawQuad(const CCSharedQuadState*, const gfx::Rect&, SkColor);
SkColor m_color;
};
« no previous file with comments | « no previous file | cc/checkerboard_draw_quad.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698