summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorjaredshumway94@gmail.com <jaredshumway94@gmail.com@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-07 23:19:29 +0000
committerjaredshumway94@gmail.com <jaredshumway94@gmail.com@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-07 23:19:29 +0000
commit7ec2f8416d79633ad475a4dbb49b11a58d33ae83 (patch)
tree17ed4fef70d83a9f1db4c1d4eded83d72784d813 /tools
parent7434c2e46723dbf444f1cbc256b195863388a45b (diff)
downloadchromium_src-7ec2f8416d79633ad475a4dbb49b11a58d33ae83.zip
chromium_src-7ec2f8416d79633ad475a4dbb49b11a58d33ae83.tar.gz
chromium_src-7ec2f8416d79633ad475a4dbb49b11a58d33ae83.tar.bz2
Doc server Enums now respect the noinline_doc tag.
BUG=247675 Review URL: https://chromiumcodereview.appspot.com/16399011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@204973 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools')
-rw-r--r--tools/json_schema_compiler/idl_schema.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/json_schema_compiler/idl_schema.py b/tools/json_schema_compiler/idl_schema.py
index 249a670..2745cea 100644
--- a/tools/json_schema_compiler/idl_schema.py
+++ b/tools/json_schema_compiler/idl_schema.py
@@ -297,7 +297,7 @@ class Enum(object):
'description': self.description,
'type': 'string',
'enum': enum}
- for property_name in ('inline_doc', 'nodoc'):
+ for property_name in ('inline_doc', 'noinline_doc', 'nodoc'):
if self.node.GetProperty(property_name):
result[property_name] = True
return result