| Index: tools/json_schema_compiler/idl_schema.py
|
| diff --git a/tools/json_schema_compiler/idl_schema.py b/tools/json_schema_compiler/idl_schema.py
|
| index 89bb8816b0c82f9237e4f14ca287861c5a036d60..d4229651c9a5985d671cecd3d164b60964668172 100644
|
| --- a/tools/json_schema_compiler/idl_schema.py
|
| +++ b/tools/json_schema_compiler/idl_schema.py
|
| @@ -260,6 +260,9 @@ class Typeref(object):
|
| elif self.typeref == 'ArrayBuffer':
|
| properties['type'] = 'binary'
|
| properties['isInstanceOf'] = 'ArrayBuffer'
|
| + elif self.typeref == 'Uint8Array':
|
| + properties['type'] = 'binary'
|
| + properties['isInstanceOf'] = 'Uint8Array'
|
| elif self.typeref == 'FileEntry':
|
| properties['type'] = 'object'
|
| properties['isInstanceOf'] = 'FileEntry'
|
|
|