| Index: third_party/WebKit/Source/web/ChromeClientImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/ChromeClientImpl.cpp b/third_party/WebKit/Source/web/ChromeClientImpl.cpp
|
| index 34e37bb1fee49a49d67e2df749fcbcd5ef9fd410..8346f468fbda72d7304812c447113c33fd19e57a 100644
|
| --- a/third_party/WebKit/Source/web/ChromeClientImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/ChromeClientImpl.cpp
|
| @@ -74,6 +74,7 @@
|
| #include "platform/exported/WrappedResourceRequest.h"
|
| #include "platform/geometry/IntRect.h"
|
| #include "platform/graphics/GraphicsLayer.h"
|
| +#include "platform/graphics/TouchAction.h"
|
| #include "platform/scheduler/renderer/web_view_scheduler.h"
|
| #include "platform/weborigin/SecurityOrigin.h"
|
| #include "platform/wtf/Optional.h"
|
| @@ -102,7 +103,6 @@
|
| #include "public/web/WebSelection.h"
|
| #include "public/web/WebSettings.h"
|
| #include "public/web/WebTextDirection.h"
|
| -#include "public/web/WebTouchAction.h"
|
| #include "public/web/WebUserGestureIndicator.h"
|
| #include "public/web/WebUserGestureToken.h"
|
| #include "public/web/WebViewClient.h"
|
| @@ -1057,7 +1057,7 @@ void ChromeClientImpl::SetTouchAction(LocalFrame* frame,
|
| return;
|
|
|
| if (WebWidgetClient* client = widget->Client())
|
| - client->SetTouchAction(static_cast<WebTouchAction>(touch_action));
|
| + client->SetTouchAction(static_cast<TouchAction>(touch_action));
|
| }
|
|
|
| bool ChromeClientImpl::RequestPointerLock(LocalFrame* frame) {
|
|
|