diff options
author | asargent@chromium.org <asargent@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-05 17:38:43 +0000 |
---|---|---|
committer | asargent@chromium.org <asargent@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-05 17:38:43 +0000 |
commit | d01e6ff96b89ad55855f4e29684d059a8798e8f8 (patch) | |
tree | 8b43192473c8d5b154357f8bed80d67e94554639 /ppapi/api | |
parent | 00565d06c051fe61fbc707ca89508e8cd441a608 (diff) | |
download | chromium_src-d01e6ff96b89ad55855f4e29684d059a8798e8f8.zip chromium_src-d01e6ff96b89ad55855f4e29684d059a8798e8f8.tar.gz chromium_src-d01e6ff96b89ad55855f4e29684d059a8798e8f8.tar.bz2 |
This adds support for a number of features in the current WebIDL spec (http://dev.w3.org/2006/webapi/WebIDL/):
-Callbacks
-Dictionaries
-static functions in interfaces
-optional parameters and dictionary members
It also introduces a "namespace" production to the grammar, which is just a named scope surrounding a list of other IDL fragments.
Finally, there are a couple of random cleanups.
BUG=116636
TEST=existing tests should still work
Review URL: https://chromiumcodereview.appspot.com/9388002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124959 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/api')
-rw-r--r-- | ppapi/api/dev/pp_cursor_type_dev.idl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ppapi/api/dev/pp_cursor_type_dev.idl b/ppapi/api/dev/pp_cursor_type_dev.idl index 7166c2af..08abec3 100644 --- a/ppapi/api/dev/pp_cursor_type_dev.idl +++ b/ppapi/api/dev/pp_cursor_type_dev.idl @@ -7,8 +7,7 @@ * This file defines enumerations for cursor types. */ -[assert_size(4)] -[notypedef] enum PP_CursorType_Dev { +[assert_size(4),notypedef] enum PP_CursorType_Dev { PP_CURSORTYPE_CUSTOM = -1, PP_CURSORTYPE_POINTER = 0, PP_CURSORTYPE_CROSS = 1, |