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

Unified Diff: third_party/WebKit/Source/core/paint/SVGClipPainter.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/SVGClipPainter.cpp
diff --git a/third_party/WebKit/Source/core/paint/SVGClipPainter.cpp b/third_party/WebKit/Source/core/paint/SVGClipPainter.cpp
index 52d1bd919f581b3d5f40982135011441098d3936..244719831325e44ef7ce14476052c622c4b38446 100644
--- a/third_party/WebKit/Source/core/paint/SVGClipPainter.cpp
+++ b/third_party/WebKit/Source/core/paint/SVGClipPainter.cpp
@@ -56,7 +56,7 @@ bool SVGClipPainter::prepareEffect(const LayoutObject& target, const FloatRect&
Path clipPath;
if (m_clip.asPath(animatedLocalTransform, targetBoundingBox, clipPath)) {
clipperState = ClipperAppliedPath;
- context.paintController().createAndAppend<BeginClipPathDisplayItem>(target, clipPath);
+ context.getPaintController().createAndAppend<BeginClipPathDisplayItem>(target, clipPath);
return true;
}
@@ -95,7 +95,7 @@ void SVGClipPainter::finishEffect(const LayoutObject& target, GraphicsContext& c
switch (clipperState) {
case ClipperAppliedPath:
// Path-only clipping, no layers to restore but we need to emit an end to the clip path display item.
- context.paintController().endItem<EndClipPathDisplayItem>(target);
+ context.getPaintController().endItem<EndClipPathDisplayItem>(target);
break;
case ClipperAppliedMask:
// Transfer content -> clip mask (SrcIn)

Powered by Google App Engine
This is Rietveld 408576698