Title: [119843] trunk/Source/WebKit/chromium
- Revision
- 119843
- Author
- [email protected]
- Date
- 2012-06-08 11:14:55 -0700 (Fri, 08 Jun 2012)
Log Message
More than 8 fingers get ignored by touch
https://bugs.webkit.org/show_bug.cgi?id=88359
Reviewed by James Robinson.
* public/WebInputEvent.h: Increase of TouchPoints per TouchEvent from 8 to 12.
Modified Paths
Diff
Modified: trunk/Source/WebKit/chromium/ChangeLog (119842 => 119843)
--- trunk/Source/WebKit/chromium/ChangeLog 2012-06-08 17:59:49 UTC (rev 119842)
+++ trunk/Source/WebKit/chromium/ChangeLog 2012-06-08 18:14:55 UTC (rev 119843)
@@ -1,3 +1,12 @@
+2012-06-08 Robert Kroeger <[email protected]>
+
+ More than 8 fingers get ignored by touch
+ https://bugs.webkit.org/show_bug.cgi?id=88359
+
+ Reviewed by James Robinson.
+
+ * public/WebInputEvent.h: Increase of TouchPoints per TouchEvent from 8 to 12.
+
2012-06-08 Sheriff Bot <[email protected]>
Unreviewed. Rolled DEPS.
Modified: trunk/Source/WebKit/chromium/public/WebInputEvent.h (119842 => 119843)
--- trunk/Source/WebKit/chromium/public/WebInputEvent.h 2012-06-08 17:59:49 UTC (rev 119842)
+++ trunk/Source/WebKit/chromium/public/WebInputEvent.h 2012-06-08 18:14:55 UTC (rev 119843)
@@ -385,7 +385,9 @@
class WebTouchEvent : public WebInputEvent {
public:
- enum { touchesLengthCap = 8 };
+ // Maximum number of simultaneous touches supported on
+ // Ash/Aura.
+ enum { touchesLengthCap = 12 };
unsigned touchesLength;
// List of all touches which are currently down.
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes