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

Unified Diff: public/web/WebCompositionUnderline.h

Issue 426573004: [Minor Cleanup] Remove unnecessary constructor from WebCompositionUnderline.h (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 5 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: public/web/WebCompositionUnderline.h
diff --git a/public/web/WebCompositionUnderline.h b/public/web/WebCompositionUnderline.h
index 21c065ba4871de539c20e9446311c05960bcc77d..d9f307b1ceca0bf4b011ff9ffe64069a0f2e10b1 100644
--- a/public/web/WebCompositionUnderline.h
+++ b/public/web/WebCompositionUnderline.h
@@ -45,14 +45,6 @@ struct WebCompositionUnderline {
, thick(false)
, backgroundColor(0) { }
- // FIXME(huangs): remove this constructor.
- WebCompositionUnderline(unsigned s, unsigned e, WebColor c, bool t)
- : startOffset(s)
- , endOffset(e)
- , color(c)
- , thick(t)
- , backgroundColor(0) { }
-
WebCompositionUnderline(unsigned s, unsigned e, WebColor c, bool t, WebColor 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