| Index: third_party/WebKit/Source/core/dom/CompositorProxiedPropertySet.h
|
| diff --git a/third_party/WebKit/Source/core/dom/CompositorProxiedPropertySet.h b/third_party/WebKit/Source/core/dom/CompositorProxiedPropertySet.h
|
| index 874b6ea883344f8f9eec27f476715129615f830d..73fd68e207723fd2d1b31d0a7d1a9efdd9dd0ff6 100644
|
| --- a/third_party/WebKit/Source/core/dom/CompositorProxiedPropertySet.h
|
| +++ b/third_party/WebKit/Source/core/dom/CompositorProxiedPropertySet.h
|
| @@ -9,6 +9,7 @@
|
| #include "wtf/Allocator.h"
|
| #include "wtf/Forward.h"
|
| #include "wtf/Noncopyable.h"
|
| +#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -17,7 +18,7 @@ class CompositorProxiedPropertySet final {
|
| WTF_MAKE_NONCOPYABLE(CompositorProxiedPropertySet);
|
| USING_FAST_MALLOC(CompositorProxiedPropertySet);
|
| public:
|
| - static PassOwnPtr<CompositorProxiedPropertySet> create();
|
| + static std::unique_ptr<CompositorProxiedPropertySet> create();
|
| virtual ~CompositorProxiedPropertySet();
|
|
|
| bool isEmpty() const;
|
|
|