Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(261)

Unified Diff: third_party/WebKit/Source/web/WebUserGestureIndicator.cpp

Issue 2900593002: Move many more classes to use WebLocalFrameBase over WebLocalFrameImpl. (Closed)
Patch Set: Rebase Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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() {
« no previous file with comments | « third_party/WebKit/Source/web/WebSurroundingText.cpp ('k') | third_party/WebKit/Source/web/mac/WebSubstringUtil.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698