Index: tools/json_schema_compiler/idl_schema.py |
=================================================================== |
--- tools/json_schema_compiler/idl_schema.py (revision 136322) |
+++ tools/json_schema_compiler/idl_schema.py (working copy) |
@@ -5,11 +5,9 @@ |
import json |
import os.path |
-import re |
import sys |
+import re |
-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 |
# in that format into memory, and emits them as a Python array of objects |
@@ -258,7 +256,6 @@ |
continue |
else: |
sys.exit("Did not process %s %s" % (node.cls, node)) |
- schema_util.PrefixSchemasWithNamespace(namespaces) |
return namespaces |
def Load(filename): |