Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(63)

Unified Diff: tools/json_schema_compiler/test/additionalProperties.json

Issue 10272021: Files generated by the JSON schema compiler are named incorrectly (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Minor changes Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tools/json_schema_compiler/test/additionalProperties.json
diff --git a/tools/json_schema_compiler/test/additionalProperties.json b/tools/json_schema_compiler/test/additionalProperties.json
deleted file mode 100644
index 03bbef8ea5fc84a6dffbcf7c2ed3c59cb7d491bd..0000000000000000000000000000000000000000
--- a/tools/json_schema_compiler/test/additionalProperties.json
+++ /dev/null
@@ -1,55 +0,0 @@
-[
- {
- "namespace": "additionalProperties",
- "types": [
- {
- "id": "AdditionalPropertiesType",
- "type": "object",
- "properties": {
- "string": {
- "type": "string",
- "description": "Some string."
- }
- },
- "additionalProperties": { "type": "any" }
- }
- ],
- "functions": [
- {
- "name": "additionalProperties",
- "type": "function",
- "description": "Takes an object with additionalProperties",
- "parameters": [
- {
- "name": "paramObject",
- "type": "object",
- "properties": {},
- "additionalProperties": {"type": "any"}
- }
- ]
- },
- {
- "name": "returnAdditionalProperties",
- "type": "function",
- "description": "Returns an object with additionalProperties.",
- "nodoc": "true",
- "parameters": [
- {
- "type": "function",
- "name": "callback",
- "parameters": [
- {
- "name": "resultObject",
- "type": "object",
- "properties": {
- "integer": {"type": "integer"}
- },
- "additionalProperties": {"type": "any"}
- }
- ]
- }
- ]
- }
- ]
- }
-]
« no previous file with comments | « tools/json_schema_compiler/cpp_type_generator_test.py ('k') | tools/json_schema_compiler/test/additional_properties.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698