| Index: third_party/WebKit/Source/platform/graphics/CompositorMutableStateProvider.cpp
|
| diff --git a/third_party/WebKit/Source/platform/graphics/CompositorMutableStateProvider.cpp b/third_party/WebKit/Source/platform/graphics/CompositorMutableStateProvider.cpp
|
| index b38d0fac1f636ccfe082ec4e3552bab401b67e5c..cd167b1a8e21fd7a82fac1686d64d6862b90f366 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/CompositorMutableStateProvider.cpp
|
| +++ b/third_party/WebKit/Source/platform/graphics/CompositorMutableStateProvider.cpp
|
| @@ -39,10 +39,10 @@ CompositorMutableStateProvider::getMutableStateFor(uint64_t elementId) {
|
|
|
| // Only if this is a new entry do we want to allocate a new mutation.
|
| if (result.isNewEntry)
|
| - result.storedValue->value = wrapUnique(new CompositorMutation);
|
| + result.storedValue->value = WTF::wrapUnique(new CompositorMutation);
|
|
|
| - return wrapUnique(new CompositorMutableState(result.storedValue->value.get(),
|
| - mainLayer, scrollLayer));
|
| + return WTF::wrapUnique(new CompositorMutableState(
|
| + result.storedValue->value.get(), mainLayer, scrollLayer));
|
| }
|
|
|
| } // namespace blink
|
|
|