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

Unified Diff: third_party/WebKit/Source/modules/csspaint/CSSPaintDefinition.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/modules/csspaint/CSSPaintDefinition.cpp
diff --git a/third_party/WebKit/Source/modules/csspaint/CSSPaintDefinition.cpp b/third_party/WebKit/Source/modules/csspaint/CSSPaintDefinition.cpp
index 1a0624c9d369bc39938a1d0dfd92990f130e75f3..778a4342aa3d2ad010cc675ad1d68ab0fb6b0e72 100644
--- a/third_party/WebKit/Source/modules/csspaint/CSSPaintDefinition.cpp
+++ b/third_party/WebKit/Source/modules/csspaint/CSSPaintDefinition.cpp
@@ -83,7 +83,7 @@ PassRefPtr<Image> CSSPaintDefinition::paint(const LayoutObject& layoutObject,
DCHECK(layoutObject.node());
PaintRenderingContext2D* renderingContext = PaintRenderingContext2D::create(
- ImageBuffer::create(wrapUnique(
+ ImageBuffer::create(WTF::wrapUnique(
new RecordingImageBufferSurface(size, nullptr /* fallbackFactory */,
m_hasAlpha ? NonOpaque : Opaque))),
m_hasAlpha, zoom);

Powered by Google App Engine
This is Rietveld 408576698