| 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 cdbd480ad1bb74e89e5de57f8735a0e2320ce7a9..31aa0a1fc4853831f11df49919010554887ca00e 100644
|
| --- a/third_party/WebKit/Source/core/style/ComputedStyle.h
|
| +++ b/third_party/WebKit/Source/core/style/ComputedStyle.h
|
| @@ -65,6 +65,7 @@
|
| #include "platform/geometry/FloatRoundedRect.h"
|
| #include "platform/geometry/LayoutRectOutsets.h"
|
| #include "platform/graphics/Color.h"
|
| +#include "platform/graphics/TouchAction.h"
|
| #include "platform/scroll/ScrollTypes.h"
|
| #include "platform/text/TextDirection.h"
|
| #include "platform/text/UnicodeBidi.h"
|
| @@ -1532,7 +1533,9 @@ class CORE_EXPORT ComputedStyle : public ComputedStyleBase,
|
| }
|
|
|
| // touch-action
|
| - static TouchAction InitialTouchAction() { return kTouchActionAuto; }
|
| + static TouchAction InitialTouchAction() {
|
| + return TouchAction::kTouchActionAuto;
|
| + }
|
| TouchAction GetTouchAction() const {
|
| return static_cast<TouchAction>(rare_non_inherited_data_->touch_action_);
|
| }
|
|
|