| 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 9ae5c304ea66a7a24875cac2e14b08571479d1ca..3c20a96956260707e6b7469103567b0952c81aca 100644
|
| --- a/third_party/WebKit/Source/core/style/ComputedStyle.h
|
| +++ b/third_party/WebKit/Source/core/style/ComputedStyle.h
|
| @@ -739,17 +739,6 @@ class CORE_EXPORT ComputedStyle : public ComputedStyleBase,
|
| length);
|
| }
|
|
|
| - // flex-direction (aka -webkit-flex-direction)
|
| - static EFlexDirection InitialFlexDirection() { return EFlexDirection::kRow; }
|
| - EFlexDirection FlexDirection() const {
|
| - return static_cast<EFlexDirection>(
|
| - rare_non_inherited_data_->flexible_box_data_->flex_direction_);
|
| - }
|
| - void SetFlexDirection(EFlexDirection direction) {
|
| - SET_NESTED_VAR(rare_non_inherited_data_, flexible_box_data_,
|
| - flex_direction_, static_cast<unsigned>(direction));
|
| - }
|
| -
|
| // flex-grow (aka -webkit-flex-grow)
|
| static float InitialFlexGrow() { return 0; }
|
| float FlexGrow() const {
|
|
|