Remove unneeded constructor for CompositionUnderline

Removed an unused CompositionUnderline constructor.

Review URL: https://codereview.chromium.org/550943002

git-svn-id: svn://svn.chromium.org/blink/trunk@181682 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent a29f5258
...@@ -38,14 +38,6 @@ struct CompositionUnderline { ...@@ -38,14 +38,6 @@ struct CompositionUnderline {
, thick(false) , thick(false)
, backgroundColor(Color::transparent) { } , backgroundColor(Color::transparent) { }
// FIXME(huangs): remove this constructor.
CompositionUnderline(unsigned s, unsigned e, const Color& c, bool t)
: startOffset(s)
, endOffset(e)
, color(c)
, thick(t)
, backgroundColor(Color::transparent) { }
CompositionUnderline(unsigned s, unsigned e, const Color& c, bool t, const Color& bc) CompositionUnderline(unsigned s, unsigned e, const Color& c, bool t, const Color& bc)
: startOffset(s) : startOffset(s)
, endOffset(e) , endOffset(e)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment