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 087b2f4c6d5e1c52f081ff1b8da940e2c41b2e8a..bdaa2ca0905a2ca977da752826a824c30a993213 100644 |
--- a/tools/json_schema_compiler/idl_schema.py |
+++ b/tools/json_schema_compiler/idl_schema.py |
@@ -5,8 +5,10 @@ |
import json |
import os.path |
-import sys |
import re |
+import sys |
+ |
+import schema_util |
# This file is a peer to json_schema.py. Each of these files understands a |
# certain format describing APIs (either JSON or IDL), reads files written |
@@ -256,6 +258,7 @@ class IDLSchema(object): |
continue |
else: |
sys.exit("Did not process %s %s" % (node.cls, node)) |
+ schema_util.PrefixSchemasWithNamespace(namespaces) |
return namespaces |
def Load(filename): |