| Index: webkit/compositor_bindings/WebImageLayerImpl.h
|
| diff --git a/webkit/compositor_bindings/WebImageLayerImpl.h b/webkit/compositor_bindings/WebImageLayerImpl.h
|
| index 64789230280a4abe80e05cd939758e514c15c3b6..06eb234ab4a6d6ac6dd6f542396203d1b911ecc8 100644
|
| --- a/webkit/compositor_bindings/WebImageLayerImpl.h
|
| +++ b/webkit/compositor_bindings/WebImageLayerImpl.h
|
| @@ -5,8 +5,8 @@
|
| #ifndef WebImageLayerImpl_h
|
| #define WebImageLayerImpl_h
|
|
|
| -#include <public/WebImageLayer.h>
|
| -#include <wtf/OwnPtr.h>
|
| +#include "base/memory/scoped_ptr.h"
|
| +#include "third_party/WebKit/Source/Platform/chromium/public/WebImageLayer.h"
|
|
|
| namespace WebKit {
|
| class WebLayerImpl;
|
| @@ -21,7 +21,7 @@ public:
|
| virtual void setBitmap(SkBitmap) OVERRIDE;
|
|
|
| private:
|
| - OwnPtr<WebLayerImpl> m_layer;
|
| + scoped_ptr<WebLayerImpl> m_layer;
|
| };
|
|
|
| }
|
|
|