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

Unified Diff: ppapi/api/pp_input_event.idl

Issue 2394773002: Remove 'char' from IDL (Closed)
Patch Set: Created 4 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 | ppapi/api/ppb_gamepad.idl » ('j') | ppapi/c/pp_input_event.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/api/pp_input_event.idl
diff --git a/ppapi/api/pp_input_event.idl b/ppapi/api/pp_input_event.idl
index e08f090fe4f0a2c8f0fa93139f20f4b12d1c58e1..68f84461b70f2de3ff2065dec17be6d058bab473 100644
--- a/ppapi/api/pp_input_event.idl
+++ b/ppapi/api/pp_input_event.idl
@@ -69,7 +69,7 @@ struct PP_InputEvent_Character {
* maximum UTF-8 character is 4 bytes, there will always be at least one null
* at the end so you can treat this as a null-terminated UTF-8 string.
*/
- char[5] text;
+ int8_t[5] text;
};
/**
@@ -112,7 +112,7 @@ struct PP_InputEvent_Mouse {
*/
float_t y;
- /* TODO(brettw) figure out exactly what this means.*/
+ /* (brettw) figure out exactly what this means.*/
bbudge 2016/10/05 14:07:34 Just delete the comment.
int32_t click_count;
};
« no previous file with comments | « no previous file | ppapi/api/ppb_gamepad.idl » ('j') | ppapi/c/pp_input_event.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698