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

Unified Diff: third_party/WebKit/Source/core/paint/FilterPainter.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/FilterPainter.cpp
diff --git a/third_party/WebKit/Source/core/paint/FilterPainter.cpp b/third_party/WebKit/Source/core/paint/FilterPainter.cpp
index 6f7d9e4c640af8e7fbe0576f3a4b1f03693cc350..b818723434592b8150efe6a6fc5c93d766d465c8 100644
--- a/third_party/WebKit/Source/core/paint/FilterPainter.cpp
+++ b/third_party/WebKit/Source/core/paint/FilterPainter.cpp
@@ -54,7 +54,7 @@ FilterPainter::FilterPainter(PaintLayer& layer,
DCHECK(m_layoutObject);
if (clipRect.rect() != paintingInfo.paintDirtyRect || clipRect.hasRadius())
- m_clipRecorder = wrapUnique(new LayerClipRecorder(
+ m_clipRecorder = WTF::wrapUnique(new LayerClipRecorder(
context, *layer.layoutObject(), DisplayItem::kClipLayerFilter, clipRect,
&paintingInfo, LayoutPoint(), paintFlags));

Powered by Google App Engine
This is Rietveld 408576698