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

Unified Diff: public/web/WebInputEvent.h

Issue 637103002: Increase WebTouchEvent::touchesLengthCap to 16. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/web/WebInputEvent.h
diff --git a/public/web/WebInputEvent.h b/public/web/WebInputEvent.h
index 68414184a4f411a5d2c38a7ca57fb0f64cc49e5d..cd4d53232a829163759b462e257f0f294decbb81 100644
--- a/public/web/WebInputEvent.h
+++ b/public/web/WebInputEvent.h
@@ -485,7 +485,8 @@ class WebTouchEvent : public WebInputEvent {
public:
// Maximum number of simultaneous touches supported on
// Ash/Aura.
- enum { touchesLengthCap = 12 };
+ // FIXME: Make this a variable that somehow depends on hardware max.
Rick Byers 2014/10/09 14:31:23 I'm fine saying we'll never plan to support >16 (i
mustaq 2014/10/09 14:53:36 Done.
+ enum { touchesLengthCap = 16 };
unsigned touchesLength;
// List of all touches, regardless of state.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698