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

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

Issue 1224933002: Combine outline and focus ring code paths (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 5 years, 4 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/InlinePainter.h
diff --git a/Source/core/paint/InlinePainter.h b/Source/core/paint/InlinePainter.h
index c61663e54bfeeee60be2f23fddf2c0ace4501494..257a0ca4dbc6515a12a060d9be4f9004d707919f 100644
--- a/Source/core/paint/InlinePainter.h
+++ b/Source/core/paint/InlinePainter.h
@@ -22,12 +22,8 @@ public:
InlinePainter(LayoutInline& layoutInline) : m_layoutInline(layoutInline) { }
void paint(const PaintInfo&, const LayoutPoint& paintOffset);
- void paintOutline(const PaintInfo&, const LayoutPoint& paintOffset);
private:
- LayoutRect outlinePaintRect(const Vector<LayoutRect>&, const LayoutPoint& paintOffset) const;
- void paintOutlineForLine(GraphicsContext*, const LayoutPoint&, const LayoutRect& prevLine, const LayoutRect& thisLine,
- const LayoutRect& nextLine, const Color);
LayoutInline& m_layoutInline;
};

Powered by Google App Engine
This is Rietveld 408576698