Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(212)

Unified Diff: third_party/WebKit/Source/core/paint/PaintLayer.cpp

Issue 2547053003: s/ passed(...) / WTF::passed(...) / to avoid future ambiguity w/ base::Passed. (Closed)
Patch Set: Rebasing... Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
« no previous file with comments | « third_party/WebKit/Source/core/paint/PaintLayer.h ('k') | third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698