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

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

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
Index: third_party/WebKit/Source/core/style/ComputedStyle.h
diff --git a/third_party/WebKit/Source/core/style/ComputedStyle.h b/third_party/WebKit/Source/core/style/ComputedStyle.h
index 05f8283d2788bde11a86b97be2ea69e8a68cfb18..f244b4eb9524d285192dac80b9314e1b312e4b0a 100644
--- a/third_party/WebKit/Source/core/style/ComputedStyle.h
+++ b/third_party/WebKit/Source/core/style/ComputedStyle.h
@@ -3467,7 +3467,6 @@ class CORE_EXPORT ComputedStyle : public ComputedStyleBase<ComputedStyle>,
ApplyMotionPath) const;
private:
- void SetVisitedLinkColor(const Color&);
void SetVisitedLinkBackgroundColor(const StyleColor& v) {
SET_VAR(rare_non_inherited_data_, visited_link_background_color_, v);
}
@@ -3624,7 +3623,6 @@ class CORE_EXPORT ComputedStyle : public ComputedStyleBase<ComputedStyle>,
return StyleAutoColor::AutoColor();
return StyleAutoColor(rare_inherited_data_->visited_link_caret_color_);
}
- Color VisitedLinkColor() const;
StyleColor VisitedLinkBackgroundColor() const {
return rare_non_inherited_data_->visited_link_background_color_;
}

Powered by Google App Engine
This is Rietveld 408576698