| 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 a7af98ab1d02eb7ffc692ca12966bd4336aed3d7..ebabfef8b1426d1a663d5073ecf9a38de55537c0 100644
|
| --- a/third_party/WebKit/Source/core/style/ComputedStyle.h
|
| +++ b/third_party/WebKit/Source/core/style/ComputedStyle.h
|
| @@ -597,15 +597,6 @@ class CORE_EXPORT ComputedStyle : public ComputedStyleBase,
|
| }
|
| void SetBoxShadow(PassRefPtr<ShadowList>);
|
|
|
| - // box-sizing (aka -webkit-box-sizing)
|
| - static EBoxSizing InitialBoxSizing() { return EBoxSizing::kContentBox; }
|
| - EBoxSizing BoxSizing() const {
|
| - return static_cast<EBoxSizing>(box_data_->box_sizing_);
|
| - }
|
| - void SetBoxSizing(EBoxSizing s) {
|
| - SET_VAR(box_data_, box_sizing_, static_cast<unsigned>(s));
|
| - }
|
| -
|
| // clip
|
| static LengthBox InitialClip() { return LengthBox(); }
|
| const LengthBox& Clip() const { return visual_data_->clip_; }
|
|
|