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

Unified Diff: sky/engine/core/events/GestureEvent.idl

Issue 874823002: Move GestureEvent to NewEventDispatcher (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Build fixes Created 5 years, 11 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
« no previous file with comments | « sky/engine/core/events/GestureEvent.cpp ('k') | sky/engine/core/events/PointerEvent.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/core/events/GestureEvent.idl
diff --git a/sky/engine/core/events/GestureEvent.idl b/sky/engine/core/events/GestureEvent.idl
index 7d44358eaf046eb5996f66dce77599a3d3c253a5..37b9ed5ec1bab25437a474d733bc63b6ef31994f 100644
--- a/sky/engine/core/events/GestureEvent.idl
+++ b/sky/engine/core/events/GestureEvent.idl
@@ -4,18 +4,11 @@
[
EventConstructor,
-] interface GestureEvent : UIEvent {
- [InitializedByEventConstructor] readonly attribute long screenX;
- [InitializedByEventConstructor] readonly attribute long screenY;
- [InitializedByEventConstructor] readonly attribute long clientX;
- [InitializedByEventConstructor] readonly attribute long clientY;
- [InitializedByEventConstructor] readonly attribute boolean ctrlKey;
- [InitializedByEventConstructor] readonly attribute boolean shiftKey;
- [InitializedByEventConstructor] readonly attribute boolean altKey;
- [InitializedByEventConstructor] readonly attribute boolean metaKey;
-
- [InitializedByEventConstructor] readonly attribute double deltaX;
- [InitializedByEventConstructor] readonly attribute double deltaY;
+] interface GestureEvent : Event {
+ [InitializedByEventConstructor] readonly attribute double x;
+ [InitializedByEventConstructor] readonly attribute double y;
+ [InitializedByEventConstructor] readonly attribute double dx;
+ [InitializedByEventConstructor] readonly attribute double dy;
[InitializedByEventConstructor] readonly attribute double velocityX;
[InitializedByEventConstructor] readonly attribute double velocityY;
};
« no previous file with comments | « sky/engine/core/events/GestureEvent.cpp ('k') | sky/engine/core/events/PointerEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698