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

Unified Diff: ppapi/c/ppb_input_event.h

Issue 10905131: Update PP_InputEvent_Modifier enum to match WebInputEvent::Modifiers (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 3 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
Index: ppapi/c/ppb_input_event.h
diff --git a/ppapi/c/ppb_input_event.h b/ppapi/c/ppb_input_event.h
index 382ba205de980ba66b5cb279d485744aa620c5a1..6122b586370b07e65f15457e5d52471495e64055 100644
--- a/ppapi/c/ppb_input_event.h
+++ b/ppapi/c/ppb_input_event.h
@@ -3,7 +3,7 @@
* found in the LICENSE file.
*/
-/* From ppb_input_event.idl modified Fri Jun 22 15:22:14 2012. */
+/* From ppb_input_event.idl modified Tue Aug 14 09:41:28 2012. */
#ifndef PPAPI_C_PPB_INPUT_EVENT_H_
#define PPAPI_C_PPB_INPUT_EVENT_H_
@@ -208,7 +208,9 @@ typedef enum {
PP_INPUTEVENT_MODIFIER_MIDDLEBUTTONDOWN = 1 << 7,
PP_INPUTEVENT_MODIFIER_RIGHTBUTTONDOWN = 1 << 8,
PP_INPUTEVENT_MODIFIER_CAPSLOCKKEY = 1 << 9,
- PP_INPUTEVENT_MODIFIER_NUMLOCKKEY = 1 << 10
+ PP_INPUTEVENT_MODIFIER_NUMLOCKKEY = 1 << 10,
+ PP_INPUTEVENT_MODIFIER_ISLEFT = 1 << 11,
+ PP_INPUTEVENT_MODIFIER_ISRIGHT = 1 << 12
} PP_InputEvent_Modifier;
PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_InputEvent_Modifier, 4);

Powered by Google App Engine
This is Rietveld 408576698