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