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

Unified Diff: Source/core/editing/CompositionUnderline.h

Issue 550943002: Remove unneeded constructor for CompositionUnderline (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 3 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/editing/CompositionUnderline.h
diff --git a/Source/core/editing/CompositionUnderline.h b/Source/core/editing/CompositionUnderline.h
index a4bee710213620fa5e3bd3235bb74c6becc858f9..106ac867bbc0f6e2dea5652ccadc9629cfe54923 100644
--- a/Source/core/editing/CompositionUnderline.h
+++ b/Source/core/editing/CompositionUnderline.h
@@ -38,14 +38,6 @@ struct CompositionUnderline {
, thick(false)
, 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)
: startOffset(s)
, endOffset(e)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698