| 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 51a63bd64910964a318c320f6ecb436a0e8e2598..8f6a458a8e69f68a360e7d876918b64984f39851 100644
|
| --- a/third_party/WebKit/Source/core/dom/CompositorProxiedPropertySet.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/CompositorProxiedPropertySet.cpp
|
| @@ -4,12 +4,13 @@
|
|
|
| #include "config.h"
|
| #include "core/dom/CompositorProxiedPropertySet.h"
|
| +#include "wtf/PassOwnPtr.h"
|
|
|
| namespace blink {
|
|
|
| -PassOwnPtrWillBeRawPtr<CompositorProxiedPropertySet> CompositorProxiedPropertySet::create()
|
| +PassOwnPtr<CompositorProxiedPropertySet> CompositorProxiedPropertySet::create()
|
| {
|
| - return adoptPtrWillBeNoop(new CompositorProxiedPropertySet);
|
| + return adoptPtr(new CompositorProxiedPropertySet);
|
| }
|
|
|
| CompositorProxiedPropertySet::CompositorProxiedPropertySet()
|
|
|