| Index: third_party/WebKit/Source/platform/graphics/compositing/PaintArtifactCompositor.cpp
|
| diff --git a/third_party/WebKit/Source/platform/graphics/compositing/PaintArtifactCompositor.cpp b/third_party/WebKit/Source/platform/graphics/compositing/PaintArtifactCompositor.cpp
|
| index 3542db9f82d5454f7d6cefb80898514bb72e5b52..e8ee61284e0ece14dca9be84bc30cd6b076d92ab 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/compositing/PaintArtifactCompositor.cpp
|
| +++ b/third_party/WebKit/Source/platform/graphics/compositing/PaintArtifactCompositor.cpp
|
| @@ -290,7 +290,7 @@ PaintArtifactCompositor::clientForPaintChunk(
|
| return std::move(client);
|
| }
|
|
|
| - return wrapUnique(new ContentLayerClientImpl(
|
| + return WTF::wrapUnique(new ContentLayerClientImpl(
|
| paintChunk.id
|
| ? *paintChunk.id
|
| : paintArtifact.getDisplayItemList()[paintChunk.beginIndex].getId()));
|
| @@ -768,7 +768,7 @@ void PaintArtifactCompositor::update(
|
| return;
|
|
|
| if (m_extraDataForTestingEnabled)
|
| - m_extraDataForTesting = wrapUnique(new ExtraDataForTesting);
|
| + m_extraDataForTesting = WTF::wrapUnique(new ExtraDataForTesting);
|
|
|
| m_rootLayer->RemoveAllChildren();
|
| m_rootLayer->set_property_tree_sequence_number(kPropertyTreeSequenceNumber);
|
|
|