Index: cc/CCTextureLayerImpl.h |
=================================================================== |
--- cc/CCTextureLayerImpl.h (revision 160631) |
+++ cc/CCTextureLayerImpl.h (working copy) |
@@ -11,9 +11,9 @@ |
class CCTextureLayerImpl : public CCLayerImpl { |
public: |
- static scoped_ptr<CCTextureLayerImpl> create(int id) |
+ static PassOwnPtr<CCTextureLayerImpl> create(int id) |
{ |
- return make_scoped_ptr(new CCTextureLayerImpl(id)); |
+ return adoptPtr(new CCTextureLayerImpl(id)); |
} |
virtual ~CCTextureLayerImpl(); |