| 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 991b1c6bb9d060ce44ca842555b345fd2dc509e6..6c7979ce4da3cc28d94892fd5156dad70f1fe887 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'
|
|
|