| Index: third_party/WebKit/Source/platform/graphics/compositing/PaintArtifactCompositor.h
|
| diff --git a/third_party/WebKit/Source/platform/graphics/compositing/PaintArtifactCompositor.h b/third_party/WebKit/Source/platform/graphics/compositing/PaintArtifactCompositor.h
|
| index b98d23084242863ce67be6e05e3019d2d775c769..61df25c025856fbbb90c29775c719751557fdb9d 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/compositing/PaintArtifactCompositor.h
|
| +++ b/third_party/WebKit/Source/platform/graphics/compositing/PaintArtifactCompositor.h
|
| @@ -8,8 +8,8 @@
|
| #include "base/memory/ref_counted.h"
|
| #include "platform/PlatformExport.h"
|
| #include "wtf/Noncopyable.h"
|
| -#include "wtf/OwnPtr.h"
|
| #include "wtf/Vector.h"
|
| +#include <memory>
|
|
|
| namespace cc {
|
| class Layer;
|
| @@ -56,8 +56,8 @@ private:
|
| scoped_refptr<cc::Layer> layerForPaintChunk(const PaintArtifact&, const PaintChunk&, gfx::Transform);
|
|
|
| scoped_refptr<cc::Layer> m_rootLayer;
|
| - OwnPtr<WebLayer> m_webLayer;
|
| - Vector<OwnPtr<ContentLayerClientImpl>> m_contentLayerClients;
|
| + std::unique_ptr<WebLayer> m_webLayer;
|
| + Vector<std::unique_ptr<ContentLayerClientImpl>> m_contentLayerClients;
|
| };
|
|
|
| } // namespace blink
|
|
|