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

Unified Diff: ppapi/api/ppb_input_event.idl

Issue 2844823002: Support Coalesced Touch in ppapi (Closed)
Patch Set: Support Coalesced Touch in ppapi Created 3 years, 7 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 | « content/shell/test_runner/test_plugin.cc ('k') | ppapi/c/ppb_input_event.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/api/ppb_input_event.idl
diff --git a/ppapi/api/ppb_input_event.idl b/ppapi/api/ppb_input_event.idl
index b737a2e4832b7bacb66b7739c2ae1bf048833b5e..25d2afb4f1c20840f82ae2a49ebf9f0b97bc1cd6 100644
--- a/ppapi/api/ppb_input_event.idl
+++ b/ppapi/api/ppb_input_event.idl
@@ -281,7 +281,16 @@ enum PP_InputEvent_Class {
*
* Request this input event class if you allow on-the-spot IME input.
*/
- PP_INPUTEVENT_CLASS_IME = 1 << 4
+ PP_INPUTEVENT_CLASS_IME = 1 << 4,
+
+ /**
+ * Identifies coalesced touch input events.
+ *
+ * Touch events are coalesced for each frame. By default, the coalesced touch
+ * events will be dropped. Request this input event class if you intend to
+ * handle all the touch events.
+ */
+ PP_INPUTEVENT_CLASS_COALESCED_TOUCH = 1 << 5
};
/**
« no previous file with comments | « content/shell/test_runner/test_plugin.cc ('k') | ppapi/c/ppb_input_event.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698