| 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 0a47536b1f24e4481fee6db3925bfbcd5ce24701..20c3762a4e21a297324d5a7dded9ca910a457b69 100644
|
| --- a/third_party/WebKit/Source/core/style/ComputedStyle.h
|
| +++ b/third_party/WebKit/Source/core/style/ComputedStyle.h
|
| @@ -758,17 +758,6 @@ class CORE_EXPORT ComputedStyle : public ComputedStyleBase,
|
| f);
|
| }
|
|
|
| - // flex-wrap (aka -webkit-flex-wrap)
|
| - static EFlexWrap InitialFlexWrap() { return EFlexWrap::kNowrap; }
|
| - EFlexWrap FlexWrap() const {
|
| - return static_cast<EFlexWrap>(
|
| - rare_non_inherited_data_->flexible_box_data_->flex_wrap_);
|
| - }
|
| - void SetFlexWrap(EFlexWrap w) {
|
| - SET_NESTED_VAR(rare_non_inherited_data_, flexible_box_data_, flex_wrap_,
|
| - static_cast<unsigned>(w));
|
| - }
|
| -
|
| // -webkit-box-ordinal-group
|
| static unsigned InitialBoxOrdinalGroup() { return 1; }
|
| unsigned BoxOrdinalGroup() const {
|
|
|