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

Unified Diff: Source/core/paint/SVGMaskPainter.h

Issue 1022843004: [S.P.] Use 'const LayoutObject&' in SVGMaskPainter. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 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
« no previous file with comments | « no previous file | Source/core/paint/SVGMaskPainter.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/paint/SVGMaskPainter.h
diff --git a/Source/core/paint/SVGMaskPainter.h b/Source/core/paint/SVGMaskPainter.h
index 42d829cc0b5b0af3020d38846bc07a044420fc34..e1b6998a0fd02fc37ae8c14c34db8ca9b934b84a 100644
--- a/Source/core/paint/SVGMaskPainter.h
+++ b/Source/core/paint/SVGMaskPainter.h
@@ -18,8 +18,8 @@ class SVGMaskPainter {
public:
SVGMaskPainter(LayoutSVGResourceMasker& mask) : m_mask(mask) { }
- bool prepareEffect(LayoutObject*, GraphicsContext*);
- void finishEffect(LayoutObject*, GraphicsContext*);
+ bool prepareEffect(const LayoutObject&, GraphicsContext*);
+ void finishEffect(const LayoutObject&, GraphicsContext*);
private:
void drawMaskForRenderer(GraphicsContext*, DisplayItemClient, const FloatRect& targetBoundingBox);
« no previous file with comments | « no previous file | Source/core/paint/SVGMaskPainter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698