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

Unified Diff: third_party/WebKit/Source/platform/graphics/compositing/PaintArtifactCompositor.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/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);

Powered by Google App Engine
This is Rietveld 408576698