| 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 3d103410a6c3cd0663eea30d0e2d97ffa91c5402..4ceaf1f8e923cea31faad145c9d48f3d5b0fdb9a 100644
|
| --- a/third_party/WebKit/Source/core/style/ComputedStyle.h
|
| +++ b/third_party/WebKit/Source/core/style/ComputedStyle.h
|
| @@ -1658,15 +1658,6 @@ class CORE_EXPORT ComputedStyle : public ComputedStyleBase<ComputedStyle>,
|
| StyleImage* ListStyleImage() const;
|
| void SetListStyleImage(StyleImage*);
|
|
|
| - // overflow-wrap (aka word-wrap)
|
| - static EOverflowWrap InitialOverflowWrap() { return EOverflowWrap::kNormal; }
|
| - EOverflowWrap OverflowWrap() const {
|
| - return static_cast<EOverflowWrap>(rare_inherited_data_->overflow_wrap_);
|
| - }
|
| - void SetOverflowWrap(EOverflowWrap b) {
|
| - SET_VAR(rare_inherited_data_, overflow_wrap_, static_cast<unsigned>(b));
|
| - }
|
| -
|
| // quotes
|
| static QuotesData* InitialQuotes() { return 0; }
|
| QuotesData* Quotes() const { return rare_inherited_data_->quotes_.Get(); }
|
|
|