| Index: cc/CCSolidColorDrawQuad.h
|
| diff --git a/cc/CCSolidColorDrawQuad.h b/cc/CCSolidColorDrawQuad.h
|
| index 9b4a3a047847f8b5340133e20b54b36600306e30..6825612e491472f83634bc54f443dd3f0e1a771d 100644
|
| --- a/cc/CCSolidColorDrawQuad.h
|
| +++ b/cc/CCSolidColorDrawQuad.h
|
| @@ -7,7 +7,7 @@
|
|
|
| #include "CCDrawQuad.h"
|
| #include "SkColor.h"
|
| -#include <wtf/PassOwnPtr.h>
|
| +#include "base/memory/scoped_ptr.h"
|
|
|
| namespace cc {
|
|
|
| @@ -15,7 +15,7 @@ namespace cc {
|
|
|
| class CCSolidColorDrawQuad : public CCDrawQuad {
|
| public:
|
| - static PassOwnPtr<CCSolidColorDrawQuad> create(const CCSharedQuadState*, const IntRect&, SkColor);
|
| + static scoped_ptr<CCSolidColorDrawQuad> create(const CCSharedQuadState*, const IntRect&, SkColor);
|
|
|
| SkColor color() const { return m_color; };
|
|
|
|
|