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

Unified Diff: third_party/WebKit/Source/core/page/EventWithHitTestResults.h

Issue 2539283002: Remove PlatformGestureEvent in favour of using WebGestureEvent (Closed)
Patch Set: Add missing copyright on new file Created 4 years 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/core/page/EventWithHitTestResults.h
diff --git a/third_party/WebKit/Source/core/page/EventWithHitTestResults.h b/third_party/WebKit/Source/core/page/EventWithHitTestResults.h
index 64e16f778665ea341e1e67cfd1cba21741a2a64a..9d0bdb7b5c451309d9fb44134c548cb18407bf0f 100644
--- a/third_party/WebKit/Source/core/page/EventWithHitTestResults.h
+++ b/third_party/WebKit/Source/core/page/EventWithHitTestResults.h
@@ -23,8 +23,8 @@
#include "core/layout/HitTestResult.h"
#include "platform/PlatformEvent.h"
-#include "platform/PlatformGestureEvent.h"
#include "platform/PlatformMouseEvent.h"
+#include "public/platform/WebGestureEvent.h"
namespace blink {
@@ -55,8 +55,7 @@ class EventWithHitTestResults {
using MouseEventWithHitTestResults =
EventWithHitTestResults<PlatformMouseEvent>;
-using GestureEventWithHitTestResults =
- EventWithHitTestResults<PlatformGestureEvent>;
+using GestureEventWithHitTestResults = EventWithHitTestResults<WebGestureEvent>;
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698