Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / public / web / WebInputEvent.h
index 58c4a0b..6841418 100644 (file)
@@ -488,17 +488,9 @@ public:
     enum { touchesLengthCap = 12 };
 
     unsigned touchesLength;
-    // List of all touches which are currently down.
+    // List of all touches, regardless of state.
     WebTouchPoint touches[touchesLengthCap];
 
-    unsigned changedTouchesLength;
-    // List of all touches whose state has changed since the last WebTouchEvent
-    WebTouchPoint changedTouches[touchesLengthCap];
-
-    unsigned targetTouchesLength;
-    // List of all touches which are currently down and are targeting the event recipient.
-    WebTouchPoint targetTouches[touchesLengthCap];
-
     // Whether the event can be canceled (with preventDefault). If true then the browser
     // must wait for an ACK for this event. If false then no ACK IPC is expected.
     // See comment at the top for why an int is used here instead of a bool.
@@ -507,8 +499,6 @@ public:
     WebTouchEvent()
         : WebInputEvent(sizeof(WebTouchEvent))
         , touchesLength(0)
-        , changedTouchesLength(0)
-        , targetTouchesLength(0)
         , cancelable(true)
     {
     }