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

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

Issue 995583002: [S.P.] Use a correct bounding box for outlines of LayoutInlines for cull rects. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
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 | « Source/core/paint/InlinePainter.cpp ('k') | Source/core/paint/ObjectPainter.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/paint/ObjectPainter.h
diff --git a/Source/core/paint/ObjectPainter.h b/Source/core/paint/ObjectPainter.h
index a0692014ea7986f7801ee69d86d53e6865dada87..e90b2f9db2c7e33a274af0ec44026c12467201ae 100644
--- a/Source/core/paint/ObjectPainter.h
+++ b/Source/core/paint/ObjectPainter.h
@@ -6,6 +6,7 @@
#define ObjectPainter_h
#include "core/layout/style/LayoutStyleConstants.h"
+#include "wtf/Vector.h"
namespace blink {
@@ -22,7 +23,7 @@ public:
ObjectPainter(LayoutObject& layoutObject) : m_layoutObject(layoutObject) { }
void paintOutline(const PaintInfo&, const LayoutRect& objectBounds, const LayoutRect& visualOverflowBounds);
- void paintFocusRing(const PaintInfo&, const LayoutPoint& paintOffset, const LayoutStyle&);
+ void paintFocusRing(const PaintInfo&, const LayoutStyle&, const Vector<LayoutRect>& focusRingRects);
static void drawLineForBoxSide(GraphicsContext*, int x1, int y1, int x2, int y2, BoxSide, Color, EBorderStyle, int adjbw1, int adjbw2, bool antialias = false);
private:
« no previous file with comments | « Source/core/paint/InlinePainter.cpp ('k') | Source/core/paint/ObjectPainter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698