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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutObject.h

Issue 1328283005: Add support for multiple text decorations with same line positioning (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 5 years, 1 month 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: third_party/WebKit/Source/core/layout/LayoutObject.h
diff --git a/third_party/WebKit/Source/core/layout/LayoutObject.h b/third_party/WebKit/Source/core/layout/LayoutObject.h
index da275bcd37bd75796d8a0597c8e43b158e12b02d..890ccb932a39bf5e3f29a00e15bdbfd61c152e78 100644
--- a/third_party/WebKit/Source/core/layout/LayoutObject.h
+++ b/third_party/WebKit/Source/core/layout/LayoutObject.h
@@ -1026,15 +1026,6 @@ public:
virtual CursorDirective getCursor(const LayoutPoint&, Cursor&) const;
- struct AppliedTextDecoration {
- STACK_ALLOCATED();
- Color color;
- TextDecorationStyle style;
- AppliedTextDecoration() : color(Color::transparent), style(TextDecorationStyleSolid) { }
- };
-
- void getTextDecorations(unsigned decorations, AppliedTextDecoration& underline, AppliedTextDecoration& overline, AppliedTextDecoration& linethrough, bool quirksMode = false, bool firstlineStyle = false);
-
// Return the LayoutBoxModelObject in the container chain which is responsible for painting this object, or layout view
// if painting is root-relative. This is the container that should be passed to the 'forPaintInvalidation'
// methods.

Powered by Google App Engine
This is Rietveld 408576698