summaryrefslogtreecommitdiffstats
path: root/ppapi/c/pp_errors.h
diff options
context:
space:
mode:
authorviettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-31 21:41:08 +0000
committerviettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-31 21:41:08 +0000
commitb29aa74b75d57e1dc78bb151f1b7b2153d13ae3f (patch)
treec06576af8874b736101b045e4e1d75cfed7ba897 /ppapi/c/pp_errors.h
parent314e594492cfd5c23225763cb46c5cd190b5551c (diff)
downloadchromium_src-b29aa74b75d57e1dc78bb151f1b7b2153d13ae3f.zip
chromium_src-b29aa74b75d57e1dc78bb151f1b7b2153d13ae3f.tar.gz
chromium_src-b29aa74b75d57e1dc78bb151f1b7b2153d13ae3f.tar.bz2
Pepper/Flapper: First pass at context menu implementation.
This meets the needs of Flapper. We may want to generalize/restrict/modify the API for inclusion into PPAPI, but hopefully this lays a foundation. BUG=none TEST=Flapper context menus work (with the right version of Flapper) Review URL: http://codereview.chromium.org/6253017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@73193 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/c/pp_errors.h')
-rw-r--r--ppapi/c/pp_errors.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/ppapi/c/pp_errors.h b/ppapi/c/pp_errors.h
index 2d07e90..0138f2f 100644
--- a/ppapi/c/pp_errors.h
+++ b/ppapi/c/pp_errors.h
@@ -75,7 +75,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
};
/**
@@ -84,4 +87,3 @@ enum {
*/
#endif /* PPAPI_C_PP_ERRORS_H_ */
-