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

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

Issue 1774943003: blink: Rename platform/ methods to prefix with get when they collide. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: clash-platform: rebase-yayyyyyyyy Created 4 years, 9 months 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/SVGMaskPainter.cpp
diff --git a/third_party/WebKit/Source/core/paint/SVGMaskPainter.cpp b/third_party/WebKit/Source/core/paint/SVGMaskPainter.cpp
index 743965c691cea24e4a30b17a340a464b5a46d902..4dcb0d29d6a490bbd6ae0dd13bf8506d0fffe994 100644
--- a/third_party/WebKit/Source/core/paint/SVGMaskPainter.cpp
+++ b/third_party/WebKit/Source/core/paint/SVGMaskPainter.cpp
@@ -26,7 +26,7 @@ bool SVGMaskPainter::prepareEffect(const LayoutObject& object, GraphicsContext&
if (paintInvalidationRect.isEmpty() || !m_mask.element()->hasChildren())
return false;
- context.paintController().createAndAppend<BeginCompositingDisplayItem>(object, SkXfermode::kSrcOver_Mode, 1, &paintInvalidationRect);
+ context.getPaintController().createAndAppend<BeginCompositingDisplayItem>(object, SkXfermode::kSrcOver_Mode, 1, &paintInvalidationRect);
return true;
}
@@ -43,7 +43,7 @@ void SVGMaskPainter::finishEffect(const LayoutObject& object, GraphicsContext& c
drawMaskForLayoutObject(context, object, object.objectBoundingBox(), paintInvalidationRect);
}
- context.paintController().endItem<EndCompositingDisplayItem>(object);
+ context.getPaintController().endItem<EndCompositingDisplayItem>(object);
}
void SVGMaskPainter::drawMaskForLayoutObject(GraphicsContext& context, const LayoutObject& layoutObject, const FloatRect& targetBoundingBox, const FloatRect& targetPaintInvalidationRect)

Powered by Google App Engine
This is Rietveld 408576698