diff options
author | noelallen@google.com <noelallen@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-06 22:27:03 +0000 |
---|---|---|
committer | noelallen@google.com <noelallen@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-06 22:27:03 +0000 |
commit | 66d45b99414614b5f2d90088de3cdc0f4747f775 (patch) | |
tree | 0b03e03fc6de32bf680ae4999527ff4e2ac4a021 /ppapi/api/pp_errors.idl | |
parent | 7d8f4d417716d83322ea6f5d7e07c4da2448f63e (diff) | |
download | chromium_src-66d45b99414614b5f2d90088de3cdc0f4747f775.zip chromium_src-66d45b99414614b5f2d90088de3cdc0f4747f775.tar.gz chromium_src-66d45b99414614b5f2d90088de3cdc0f4747f775.tar.bz2 |
Fix out of sync pp_errors.idl and ppb_input_event.idl
Trivial fix of out of sync IDL files.
TEST= none
BUG= none
TBR= yzshen@chromium.org
Review URL: http://codereview.chromium.org/7789014
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@99841 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/api/pp_errors.idl')
-rw-r--r-- | ppapi/api/pp_errors.idl | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/ppapi/api/pp_errors.idl b/ppapi/api/pp_errors.idl index ca4c58a..950b77b 100644 --- a/ppapi/api/pp_errors.idl +++ b/ppapi/api/pp_errors.idl @@ -83,6 +83,11 @@ * This value indicates that the user cancelled rather than providing * expected input. */ - PP_ERROR_USERCANCEL = -40 + PP_ERROR_USERCANCEL = -40, + /** + * This value indicates that the graphics context was lost due to a + * power management event. + */ + PP_ERROR_CONTEXT_LOST = -50 }; |