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

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

Issue 889563002: Make RenderObject::style() return a const object (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Blind fix for Mac. Created 5 years, 11 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: Source/core/paint/InlineFlowBoxPainter.h
diff --git a/Source/core/paint/InlineFlowBoxPainter.h b/Source/core/paint/InlineFlowBoxPainter.h
index 58b8a81a1178bc24d60f59b5e418605cec17b711..a36d9280990124d8a229734e3dd03d3d7ef70e95 100644
--- a/Source/core/paint/InlineFlowBoxPainter.h
+++ b/Source/core/paint/InlineFlowBoxPainter.h
@@ -31,7 +31,7 @@ private:
void paintMask(const PaintInfo&, const LayoutPoint&);
void paintFillLayers(const PaintInfo&, const Color&, const FillLayer&, const LayoutRect&, SkXfermode::Mode = SkXfermode::kSrcOver_Mode);
void paintFillLayer(const PaintInfo&, const Color&, const FillLayer&, const LayoutRect&, SkXfermode::Mode);
- void paintBoxShadow(const PaintInfo&, RenderStyle*, ShadowStyle, const LayoutRect&);
+ void paintBoxShadow(const PaintInfo&, const RenderStyle*, ShadowStyle, const LayoutRect&);
LayoutRect roundedFrameRectClampedToLineTopAndBottomIfNeeded() const;
LayoutRect paintRectForImageStrip(const LayoutPoint&, const LayoutSize&, TextDirection) const;

Powered by Google App Engine
This is Rietveld 408576698