| Index: cc/CCSolidColorDrawQuad.cpp
|
| diff --git a/cc/CCSolidColorDrawQuad.cpp b/cc/CCSolidColorDrawQuad.cpp
|
| index ef49d8b0b3dacb060f185db0cf17b19937770142..153fe9f7123fefdc7bcf0f61127b9aa5aa5a415b 100644
|
| --- a/cc/CCSolidColorDrawQuad.cpp
|
| +++ b/cc/CCSolidColorDrawQuad.cpp
|
| @@ -8,12 +8,12 @@
|
|
|
| namespace cc {
|
|
|
| -PassOwnPtr<CCSolidColorDrawQuad> CCSolidColorDrawQuad::create(const CCSharedQuadState* sharedQuadState, const IntRect& quadRect, SkColor color)
|
| +PassOwnPtr<CCSolidColorDrawQuad> CCSolidColorDrawQuad::create(const CCSharedQuadState* sharedQuadState, const ccmath::IntRect& quadRect, SkColor color)
|
| {
|
| return adoptPtr(new CCSolidColorDrawQuad(sharedQuadState, quadRect, color));
|
| }
|
|
|
| -CCSolidColorDrawQuad::CCSolidColorDrawQuad(const CCSharedQuadState* sharedQuadState, const IntRect& quadRect, SkColor color)
|
| +CCSolidColorDrawQuad::CCSolidColorDrawQuad(const CCSharedQuadState* sharedQuadState, const ccmath::IntRect& quadRect, SkColor color)
|
| : CCDrawQuad(sharedQuadState, CCDrawQuad::SolidColor, quadRect)
|
| , m_color(color)
|
| {
|
|
|