Index: third_party/WebKit/Source/core/paint/PaintLayer.cpp |
diff --git a/third_party/WebKit/Source/core/paint/PaintLayer.cpp b/third_party/WebKit/Source/core/paint/PaintLayer.cpp |
index 8a2ceafec70d524fec4f83601f7ab4216ebe48f3..565ccb12a5a4694cc384700d765fb55760ed6135 100644 |
--- a/third_party/WebKit/Source/core/paint/PaintLayer.cpp |
+++ b/third_party/WebKit/Source/core/paint/PaintLayer.cpp |
@@ -1059,7 +1059,7 @@ void PaintLayer::updateAncestorDependentCompositingInputs( |
const AncestorDependentCompositingInputs& compositingInputs, |
bool hasAncestorWithClipPath) { |
m_ancestorDependentCompositingInputs = |
- makeUnique<AncestorDependentCompositingInputs>(compositingInputs); |
+ WTF::makeUnique<AncestorDependentCompositingInputs>(compositingInputs); |
m_hasAncestorWithClipPath = hasAncestorWithClipPath; |
m_needsAncestorDependentCompositingInputsUpdate = false; |
} |
@@ -1558,7 +1558,7 @@ void PaintLayer::didUpdateNeedsCompositedScrolling() { |
void PaintLayer::updateStackingNode() { |
DCHECK(!m_stackingNode); |
if (requiresStackingNode()) |
- m_stackingNode = makeUnique<PaintLayerStackingNode>(this); |
+ m_stackingNode = WTF::makeUnique<PaintLayerStackingNode>(this); |
else |
m_stackingNode = nullptr; |
} |
@@ -2682,7 +2682,7 @@ void PaintLayer::ensureCompositedLayerMapping() { |
return; |
ensureRareData().compositedLayerMapping = |
- wrapUnique(new CompositedLayerMapping(*this)); |
+ WTF::wrapUnique(new CompositedLayerMapping(*this)); |
m_rareData->compositedLayerMapping->setNeedsGraphicsLayerUpdate( |
GraphicsLayerUpdateSubtree); |