Index: ppapi/c/pp_errors.h |
diff --git a/ppapi/c/pp_errors.h b/ppapi/c/pp_errors.h |
index cec0f01ea7cbc0d25162f0cc4185380f19bb1eea..c08f0a60747b6770a954166c8029cc4a77054d5c 100644 |
--- a/ppapi/c/pp_errors.h |
+++ b/ppapi/c/pp_errors.h |
@@ -74,7 +74,10 @@ enum { |
PP_ERROR_FILECHANGED = -23, |
/** Indicates failure due to a time limit being exceeded. */ |
- PP_ERROR_TIMEDOUT = -30 |
+ PP_ERROR_TIMEDOUT = -30, |
+ |
+ /** Indicates that the user cancelled rather providing expected input. */ |
+ PP_ERROR_USERCANCEL = -40 |
}; |
/** |
@@ -83,4 +86,3 @@ enum { |
*/ |
#endif /* PPAPI_C_PP_ERRORS_H_ */ |
- |