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

Unified Diff: Source/core/paint/ObjectPainter.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/ObjectPainter.h
diff --git a/Source/core/paint/ObjectPainter.h b/Source/core/paint/ObjectPainter.h
index 170dd12b5bf573fc6fe15c03ce3b82648865a94d..37168dcbc46308ed9ee255ef38b0f612b89c4da6 100644
--- a/Source/core/paint/ObjectPainter.h
+++ b/Source/core/paint/ObjectPainter.h
@@ -22,7 +22,7 @@ public:
ObjectPainter(RenderObject& renderObject) : m_renderObject(renderObject) { }
void paintOutline(const PaintInfo&, const LayoutRect& paintRect);
- void paintFocusRing(const PaintInfo&, const LayoutPoint& paintOffset, RenderStyle*);
+ void paintFocusRing(const PaintInfo&, const LayoutPoint& paintOffset, const RenderStyle*);
static void drawLineForBoxSide(GraphicsContext*, int x1, int y1, int x2, int y2, BoxSide, Color, EBorderStyle, int adjbw1, int adjbw2, bool antialias = false);
private:

Powered by Google App Engine
This is Rietveld 408576698