| 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,
|
|
|