From 9f01b0b8254c0675d8014b55f1c5705593fbc0ce Mon Sep 17 00:00:00 2001 From: "bryeung@chromium.org" Date: Fri, 11 May 2012 17:00:01 +0000 Subject: Make all extension api types fully qualified. BUG=123073 TEST= (unit_tests --gtest_filter=ExtensionAPI) && (browser_tests --gtest_filter=ExtensionApiTest) Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=136296 Review URL: https://chromiumcodereview.appspot.com/10367002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@136588 0039d316-1c4b-4281-b951-d872f2087c98 --- tools/json_schema_compiler/json_schema.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'tools/json_schema_compiler/json_schema.py') diff --git a/tools/json_schema_compiler/json_schema.py b/tools/json_schema_compiler/json_schema.py index f51cece..636f837 100644 --- a/tools/json_schema_compiler/json_schema.py +++ b/tools/json_schema_compiler/json_schema.py @@ -10,6 +10,7 @@ import sys _script_path = os.path.realpath(__file__) sys.path.insert(0, os.path.normpath(_script_path + "/../../")) import json_comment_eater +import schema_util def DeleteNocompileNodes(item): def HasNocompile(thing): @@ -32,9 +33,10 @@ def DeleteNocompileNodes(item): def Load(filename): with open(filename, 'r') as handle: - return DeleteNocompileNodes( + schemas = DeleteNocompileNodes( json.loads(json_comment_eater.Nom(handle.read()))) - + schema_util.PrefixSchemasWithNamespace(schemas) + return schemas # A dictionary mapping |filename| to the object resulting from loading the JSON # at |filename|. -- cgit v1.1