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

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

Issue 2845233002: Generate getters/setters for border-spacing. (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 301d986a51c91324af8296c19f547107bb8a7a0e..b46feeb1e545884b5648a02ac265d72a22bafdde 100644
--- a/third_party/WebKit/Source/core/style/ComputedStyle.cpp
+++ b/third_party/WebKit/Source/core/style/ComputedStyle.cpp
@@ -1416,19 +1416,6 @@ void ComputedStyle::SetVisitedLinkColor(const Color& v) {
SET_VAR(inherited_data_, visited_link_color_, v);
}
-short ComputedStyle::HorizontalBorderSpacing() const {
- return inherited_data_->horizontal_border_spacing_;
-}
-short ComputedStyle::VerticalBorderSpacing() const {
- return inherited_data_->vertical_border_spacing_;
-}
-void ComputedStyle::SetHorizontalBorderSpacing(short v) {
- SET_VAR(inherited_data_, horizontal_border_spacing_, v);
-}
-void ComputedStyle::SetVerticalBorderSpacing(short v) {
- SET_VAR(inherited_data_, vertical_border_spacing_, v);
-}
-
FloatRoundedRect ComputedStyle::GetRoundedBorderFor(
const LayoutRect& border_rect,
bool include_logical_left_edge,
« 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