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