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

Unified Diff: third_party/WebKit/Source/core/style/ComputedStyle.cpp

Issue 2844253004: Generate getters/setters for VisitedLinkColor. (Closed)
Patch Set: Rebase Created 3 years, 7 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 | « third_party/WebKit/Source/core/style/ComputedStyle.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/style/ComputedStyle.cpp
diff --git a/third_party/WebKit/Source/core/style/ComputedStyle.cpp b/third_party/WebKit/Source/core/style/ComputedStyle.cpp
index b46feeb1e545884b5648a02ac265d72a22bafdde..658cda8ecddc0e48e0346b433927e45ecc083f20 100644
--- a/third_party/WebKit/Source/core/style/ComputedStyle.cpp
+++ b/third_party/WebKit/Source/core/style/ComputedStyle.cpp
@@ -1406,15 +1406,9 @@ void ComputedStyle::SetListStyleImage(StyleImage* v) {
Color ComputedStyle::GetColor() const {
return inherited_data_->color_;
}
-Color ComputedStyle::VisitedLinkColor() const {
- return inherited_data_->visited_link_color_;
-}
void ComputedStyle::SetColor(const Color& v) {
SET_VAR(inherited_data_, color_, v);
}
-void ComputedStyle::SetVisitedLinkColor(const Color& v) {
- SET_VAR(inherited_data_, visited_link_color_, v);
-}
FloatRoundedRect ComputedStyle::GetRoundedBorderFor(
const LayoutRect& border_rect,
« no previous file with comments | « third_party/WebKit/Source/core/style/ComputedStyle.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698