| 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 aec4bd46d6b9d3bdc12a756d13a7e73a06934c55..a8c43d87be4e7e3118505d7eb1b9f994136bbc21 100644
|
| --- a/third_party/WebKit/Source/core/style/ComputedStyle.h
|
| +++ b/third_party/WebKit/Source/core/style/ComputedStyle.h
|
| @@ -1816,15 +1816,6 @@ class CORE_EXPORT ComputedStyle : public ComputedStyleBase<ComputedStyle>,
|
| SET_VAR(rare_inherited_data_, user_modify_, static_cast<unsigned>(u));
|
| }
|
|
|
| - // -webkit-user-select
|
| - static EUserSelect InitialUserSelect() { return EUserSelect::kText; }
|
| - EUserSelect UserSelect() const {
|
| - return static_cast<EUserSelect>(rare_inherited_data_->user_select_);
|
| - }
|
| - void SetUserSelect(EUserSelect s) {
|
| - SET_VAR(rare_inherited_data_, user_select_, static_cast<unsigned>(s));
|
| - }
|
| -
|
| // caret-color
|
| void SetCaretColor(const StyleAutoColor& color) {
|
| SET_VAR(rare_inherited_data_, caret_color_, color.Resolve(Color()));
|
|
|