| Index: cc/scrollbar_animation_controller.h
|
| diff --git a/cc/scrollbar_animation_controller.h b/cc/scrollbar_animation_controller.h
|
| index bb387d7bf1c76758c26af34aa7c5f06a59aa2cc8..8df057e4498a538d03369338947719e228f5731d 100644
|
| --- a/cc/scrollbar_animation_controller.h
|
| +++ b/cc/scrollbar_animation_controller.h
|
| @@ -5,9 +5,9 @@
|
| #ifndef CCScrollbarAnimationController_h
|
| #define CCScrollbarAnimationController_h
|
|
|
| +#include "base/memory/scoped_ptr.h"
|
| #include "FloatPoint.h"
|
| #include "IntSize.h"
|
| -#include <wtf/PassOwnPtr.h>
|
|
|
| namespace cc {
|
|
|
| @@ -18,8 +18,7 @@ class CCScrollbarLayerImpl;
|
| // Individual platforms should subclass it to provide specialized implementation.
|
| class CCScrollbarAnimationController {
|
| public:
|
| - // Implemented by subclass.
|
| - static PassOwnPtr<CCScrollbarAnimationController> create(CCLayerImpl* scrollLayer);
|
| + static scoped_ptr<CCScrollbarAnimationController> create(CCLayerImpl* scrollLayer);
|
|
|
| virtual ~CCScrollbarAnimationController();
|
|
|
|
|