| Index: third_party/WebKit/Source/web/WebUserGestureIndicator.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebUserGestureIndicator.cpp b/third_party/WebKit/Source/web/WebUserGestureIndicator.cpp
|
| index ee25c5395e7ab25ca3f1237e0f44a661dc46d8a8..4a7e7c9189b001de4be865f72f7aaed39557df6c 100644
|
| --- a/third_party/WebKit/Source/web/WebUserGestureIndicator.cpp
|
| +++ b/third_party/WebKit/Source/web/WebUserGestureIndicator.cpp
|
| @@ -30,9 +30,10 @@
|
|
|
| #include "public/web/WebUserGestureIndicator.h"
|
|
|
| +#include "core/frame/LocalFrame.h"
|
| +#include "core/frame/WebLocalFrameBase.h"
|
| #include "platform/UserGestureIndicator.h"
|
| #include "public/web/WebUserGestureToken.h"
|
| -#include "web/WebLocalFrameImpl.h"
|
|
|
| namespace blink {
|
|
|
| @@ -53,7 +54,7 @@ bool WebUserGestureIndicator::ConsumeUserGesture() {
|
|
|
| bool WebUserGestureIndicator::ProcessedUserGestureSinceLoad(
|
| WebLocalFrame* frame) {
|
| - return ToWebLocalFrameImpl(frame)->GetFrame()->HasReceivedUserGesture();
|
| + return ToWebLocalFrameBase(frame)->GetFrame()->HasReceivedUserGesture();
|
| }
|
|
|
| WebUserGestureToken WebUserGestureIndicator::CurrentUserGestureToken() {
|
|
|