| 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 5a9ad6137972cfafafe4d8a47cdf09c327ee2952..a37d18656fb46f409145344242f54337b42ac5b0 100644
|
| --- a/third_party/WebKit/Source/core/style/ComputedStyle.h
|
| +++ b/third_party/WebKit/Source/core/style/ComputedStyle.h
|
| @@ -1512,9 +1512,16 @@ class CORE_EXPORT ComputedStyle : public ComputedStyleBase<ComputedStyle>,
|
| TouchAction GetTouchAction() const {
|
| return static_cast<TouchAction>(rare_non_inherited_data_->touch_action_);
|
| }
|
| + TouchAction GetEffectiveTouchAction() const {
|
| + return static_cast<TouchAction>(
|
| + rare_inherited_data_->effective_touch_action_);
|
| + }
|
| void SetTouchAction(TouchAction t) {
|
| SET_VAR(rare_non_inherited_data_, touch_action_, t);
|
| }
|
| + void SetEffectiveTouchAction(TouchAction t) {
|
| + SET_VAR(rare_inherited_data_, effective_touch_action_, t);
|
| + }
|
|
|
| // vertical-align
|
| static EVerticalAlign InitialVerticalAlign() {
|
|
|