| Index: third_party/WebKit/Source/platform/graphics/CanvasSurfaceLayerBridge.h
|
| diff --git a/third_party/WebKit/Source/platform/graphics/CanvasSurfaceLayerBridge.h b/third_party/WebKit/Source/platform/graphics/CanvasSurfaceLayerBridge.h
|
| index 3e9f3208198862f40c066485ec845ee15ee73542..5f9adc94db478006823e97a61578bf29ab717039 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/CanvasSurfaceLayerBridge.h
|
| +++ b/third_party/WebKit/Source/platform/graphics/CanvasSurfaceLayerBridge.h
|
| @@ -7,7 +7,7 @@
|
|
|
| #include "base/memory/ref_counted.h"
|
| #include "platform/PlatformExport.h"
|
| -#include "wtf/OwnPtr.h"
|
| +#include <memory>
|
|
|
| namespace cc {
|
| // TODO(611796): replace SolidColorLayer with SurfaceLayer
|
| @@ -26,7 +26,7 @@ public:
|
|
|
| private:
|
| scoped_refptr<cc::SolidColorLayer> m_solidColorLayer;
|
| - OwnPtr<WebLayer> m_webLayer;
|
| + std::unique_ptr<WebLayer> m_webLayer;
|
| };
|
|
|
| }
|
|
|