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

Unified Diff: cc/solid_color_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 | « cc/software_renderer.cc ('k') | cc/solid_color_draw_quad.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/solid_color_draw_quad.h
diff --git a/cc/solid_color_draw_quad.h b/cc/solid_color_draw_quad.h
index cd0619e6d6bcc07fb7efff2aac8bfdc8e689da0c..b864e447a77f5422ccf7cd1b8eac11f114c2e283 100644
--- a/cc/solid_color_draw_quad.h
+++ b/cc/solid_color_draw_quad.h
@@ -15,13 +15,13 @@ namespace cc {
class CCSolidColorDrawQuad : public CCDrawQuad {
public:
- static scoped_ptr<CCSolidColorDrawQuad> create(const CCSharedQuadState*, const IntRect&, SkColor);
+ static scoped_ptr<CCSolidColorDrawQuad> create(const CCSharedQuadState*, const gfx::Rect&, SkColor);
SkColor color() const { return m_color; };
static const CCSolidColorDrawQuad* materialCast(const CCDrawQuad*);
private:
- CCSolidColorDrawQuad(const CCSharedQuadState*, const IntRect&, SkColor);
+ CCSolidColorDrawQuad(const CCSharedQuadState*, const gfx::Rect&, SkColor);
SkColor m_color;
};
« no previous file with comments | « cc/software_renderer.cc ('k') | cc/solid_color_draw_quad.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698