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

Unified Diff: cc/CCSolidColorDrawQuad.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: Created 8 years, 3 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/CCSolidColorDrawQuad.h
diff --git a/cc/CCSolidColorDrawQuad.h b/cc/CCSolidColorDrawQuad.h
index 9b4a3a047847f8b5340133e20b54b36600306e30..beabd27510f40945935c691fbb67a88067f45066 100644
--- a/cc/CCSolidColorDrawQuad.h
+++ b/cc/CCSolidColorDrawQuad.h
@@ -15,13 +15,13 @@ namespace cc {
class CCSolidColorDrawQuad : public CCDrawQuad {
public:
- static PassOwnPtr<CCSolidColorDrawQuad> create(const CCSharedQuadState*, const IntRect&, SkColor);
+ static PassOwnPtr<CCSolidColorDrawQuad> create(const CCSharedQuadState*, const ccmath::IntRect&, SkColor);
SkColor color() const { return m_color; };
static const CCSolidColorDrawQuad* materialCast(const CCDrawQuad*);
private:
- CCSolidColorDrawQuad(const CCSharedQuadState*, const IntRect&, SkColor);
+ CCSolidColorDrawQuad(const CCSharedQuadState*, const ccmath::IntRect&, SkColor);
SkColor m_color;
};
« no previous file with comments | « cc/CCSharedQuadState.cpp ('k') | cc/CCSolidColorDrawQuad.cpp » ('j') | cc/math/clamp.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698