| Index: cc/CCSolidColorDrawQuad.cpp
|
| diff --git a/cc/CCSolidColorDrawQuad.cpp b/cc/CCSolidColorDrawQuad.cpp
|
| index 8d34aa32966f159b836d5dfd94cc6c0f6dde1c34..2f0c7bac91d855f05c0094962410ebd2cda653bc 100644
|
| --- a/cc/CCSolidColorDrawQuad.cpp
|
| +++ b/cc/CCSolidColorDrawQuad.cpp
|
| @@ -8,12 +8,12 @@
|
|
|
| namespace cc {
|
|
|
| -scoped_ptr<CCSolidColorDrawQuad> CCSolidColorDrawQuad::create(const CCSharedQuadState* sharedQuadState, const IntRect& quadRect, SkColor color)
|
| +scoped_ptr<CCSolidColorDrawQuad> CCSolidColorDrawQuad::create(const CCSharedQuadState* sharedQuadState, const WebKit::WebRect& quadRect, SkColor color)
|
| {
|
| return scoped_ptr<CCSolidColorDrawQuad>(new CCSolidColorDrawQuad(sharedQuadState, quadRect, color));
|
| }
|
|
|
| -CCSolidColorDrawQuad::CCSolidColorDrawQuad(const CCSharedQuadState* sharedQuadState, const IntRect& quadRect, SkColor color)
|
| +CCSolidColorDrawQuad::CCSolidColorDrawQuad(const CCSharedQuadState* sharedQuadState, const WebKit::WebRect& quadRect, SkColor color)
|
| : CCDrawQuad(sharedQuadState, CCDrawQuad::SolidColor, quadRect)
|
| , m_color(color)
|
| {
|
|
|