| 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 58efe28598f1660e9f4481e412f30fa715195668..d1d1541837e099058113dfb3ddef4d57ee2ce2ee 100755
|
| --- a/tools/json_schema_compiler/idl_schema.py
|
| +++ b/tools/json_schema_compiler/idl_schema.py
|
| @@ -360,8 +360,10 @@ class Enum(object):
|
| 'description': self.description,
|
| 'type': 'string',
|
| 'enum': enum}
|
| + # TODO(tapted): Drop enum_class when it is the default.
|
| + # See http://crbug.com/612382.
|
| for property_name in ('cpp_enum_prefix_override', 'inline_doc',
|
| - 'noinline_doc', 'nodefine', 'nodoc',):
|
| + 'noinline_doc', 'nodefine', 'nodoc', 'enum_class',):
|
| if self.node.GetProperty(property_name):
|
| result[property_name] = self.node.GetProperty(property_name)
|
| if self.node.GetProperty('deprecated'):
|
|
|