diff options
Diffstat (limited to 'ppapi/c/pp_errors.h')
-rw-r--r-- | ppapi/c/pp_errors.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/ppapi/c/pp_errors.h b/ppapi/c/pp_errors.h index 76d75df..b02ee1b 100644 --- a/ppapi/c/pp_errors.h +++ b/ppapi/c/pp_errors.h @@ -3,7 +3,7 @@ * found in the LICENSE file. */ -/* From pp_errors.idl modified Thu Jan 5 10:52:49 2012. */ +/* From pp_errors.idl modified Tue Mar 13 17:32:37 2012. */ #ifndef PPAPI_C_PP_ERRORS_H_ #define PPAPI_C_PP_ERRORS_H_ @@ -111,6 +111,13 @@ enum { */ PP_ERROR_USERCANCEL = -40, /** + * This value indicates failure due to lack of a user gesture such as a + * mouse click or key input event. Examples of actions requiring a user + * gesture are showing the file chooser dialog and going into fullscreen + * mode. + */ + PP_ERROR_NO_USER_GESTURE = -41, + /** * This value indicates that the graphics context was lost due to a * power management event. */ |