| 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;
|
| };
|
|
|