| Index: third_party/WebKit/Source/core/dom/CompositorProxiedPropertySet.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/CompositorProxiedPropertySet.cpp b/third_party/WebKit/Source/core/dom/CompositorProxiedPropertySet.cpp
|
| index cd02b7350a9d93eb1fb2aacf9093141fe97f0d69..3a0a614fbeeaa00812f474a4a863d5d189b22108 100644
|
| --- a/third_party/WebKit/Source/core/dom/CompositorProxiedPropertySet.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/CompositorProxiedPropertySet.cpp
|
| @@ -4,14 +4,13 @@
|
|
|
| #include "core/dom/CompositorProxiedPropertySet.h"
|
|
|
| -#include "wtf/PtrUtil.h"
|
| -#include <memory>
|
| +#include "wtf/PassOwnPtr.h"
|
|
|
| namespace blink {
|
|
|
| -std::unique_ptr<CompositorProxiedPropertySet> CompositorProxiedPropertySet::create()
|
| +PassOwnPtr<CompositorProxiedPropertySet> CompositorProxiedPropertySet::create()
|
| {
|
| - return wrapUnique(new CompositorProxiedPropertySet);
|
| + return adoptPtr(new CompositorProxiedPropertySet);
|
| }
|
|
|
| CompositorProxiedPropertySet::CompositorProxiedPropertySet()
|
|
|