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

Unified Diff: sky/engine/core/rendering/style/StyleInheritedData.cpp

Issue 667003003: Remove most of visited link support. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 2 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
Index: sky/engine/core/rendering/style/StyleInheritedData.cpp
diff --git a/sky/engine/core/rendering/style/StyleInheritedData.cpp b/sky/engine/core/rendering/style/StyleInheritedData.cpp
index a95fc4f06308315a2b6e61964c28c6730b0b2a43..5348788e05ac179adb3aeb5fec4e2af36b9c12c0 100644
--- a/sky/engine/core/rendering/style/StyleInheritedData.cpp
+++ b/sky/engine/core/rendering/style/StyleInheritedData.cpp
@@ -31,7 +31,6 @@ StyleInheritedData::StyleInheritedData()
, vertical_border_spacing(RenderStyle::initialVerticalBorderSpacing())
, line_height(RenderStyle::initialLineHeight())
, color(RenderStyle::initialColor())
- , visitedLinkColor(RenderStyle::initialColor())
{
}
@@ -46,7 +45,6 @@ StyleInheritedData::StyleInheritedData(const StyleInheritedData& o)
, line_height(o.line_height)
, font(o.font)
, color(o.color)
- , visitedLinkColor(o.visitedLinkColor)
{
}
@@ -55,7 +53,6 @@ bool StyleInheritedData::operator==(const StyleInheritedData& o) const
return line_height == o.line_height
&& font == o.font
&& color == o.color
- && visitedLinkColor == o.visitedLinkColor
&& horizontal_border_spacing == o.horizontal_border_spacing
&& vertical_border_spacing == o.vertical_border_spacing;
}
« no previous file with comments | « sky/engine/core/rendering/style/StyleInheritedData.h ('k') | sky/engine/core/rendering/style/StyleRareInheritedData.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698