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

Unified Diff: third_party/WebKit/Source/platform/graphics/compositing/PaintArtifactCompositor.h

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.h
diff --git a/third_party/WebKit/Source/platform/graphics/compositing/PaintArtifactCompositor.h b/third_party/WebKit/Source/platform/graphics/compositing/PaintArtifactCompositor.h
index 6f7c2bc57854c878a0f1199276af4290759d7f50..fef6b35ba364bfc6666d0c2b16f696a2527e2cc6 100644
--- a/third_party/WebKit/Source/platform/graphics/compositing/PaintArtifactCompositor.h
+++ b/third_party/WebKit/Source/platform/graphics/compositing/PaintArtifactCompositor.h
@@ -44,7 +44,7 @@ class PLATFORM_EXPORT PaintArtifactCompositor {
~PaintArtifactCompositor();
static std::unique_ptr<PaintArtifactCompositor> create() {
- return wrapUnique(new PaintArtifactCompositor());
+ return WTF::wrapUnique(new PaintArtifactCompositor());
}
// Updates the layer tree to match the provided paint artifact.

Powered by Google App Engine
This is Rietveld 408576698