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

Unified Diff: Source/core/layout/style/AppliedTextDecoration.cpp

Issue 928103002: Remove some unused functions in core (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: git cl try Created 5 years, 10 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 | « Source/core/layout/style/AppliedTextDecoration.h ('k') | Source/core/page/DragData.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/style/AppliedTextDecoration.cpp
diff --git a/Source/core/layout/style/AppliedTextDecoration.cpp b/Source/core/layout/style/AppliedTextDecoration.cpp
index a3560520982cabb754bc6a8a19cbdeaca8108f7f..c572d17315ff9825b0d1a9544fdac9b9645d0de9 100644
--- a/Source/core/layout/style/AppliedTextDecoration.cpp
+++ b/Source/core/layout/style/AppliedTextDecoration.cpp
@@ -21,13 +21,6 @@ AppliedTextDecoration::AppliedTextDecoration(TextDecoration line)
{
}
-AppliedTextDecoration::AppliedTextDecoration()
- : m_line(TextDecorationUnderline)
- , m_style(TextDecorationStyleSolid)
- , m_color(StyleColor::currentColor())
-{
-}
-
bool AppliedTextDecoration::operator==(const AppliedTextDecoration& o) const
{
return m_color == o.m_color && m_line == o.m_line && m_style == o.m_style;
« no previous file with comments | « Source/core/layout/style/AppliedTextDecoration.h ('k') | Source/core/page/DragData.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698