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

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

Issue 682493002: Remove the dependency on json schema compiler. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 6 years, 2 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/choices.json
diff --git a/tools/json_schema_compiler/test/choices.json b/tools/json_schema_compiler/test/choices.json
deleted file mode 100644
index e7e39e05c8ae20040e5fda57e3332d5113d861ae..0000000000000000000000000000000000000000
--- a/tools/json_schema_compiler/test/choices.json
+++ /dev/null
@@ -1,167 +0,0 @@
-[
- {
- "namespace": "choices",
- "description": "The choices API.",
- "types": [
- {
- "id": "ChoiceType",
- "type": "object",
- "properties": {
- "integers": {
- "choices": [
- {"type": "array", "items": {"type": "integer", "minimum": 0}},
- {"type": "integer"}
- ]
- },
- "strings": {
- "choices": [
- {"type": "array", "items": {"type": "string", "minimum": 0}},
- {"type": "string"}
- ],
- "optional": true
- }
- }
- },
- {
- "id": "NestedChoice",
- "description": "Tests when some of the choices are choices themselves",
- "choices": [
- {"type": "integer"},
- {"choices": [
- {"type": "string"},
- {"type": "boolean"}
- ]},
- {"choices": [
- {"type": "double"},
- {"$ref": "ChoiceType"},
- {"type": "array", "items": {"$ref": "ChoiceType"}}
- ]}
- ]
- }
- ],
- "functions": [
- {
- "name": "takesIntegers",
- "type": "function",
- "description": "Takes one or more integers.",
- "parameters": [
- {
- "name": "nums",
- "choices": [
- {"type": "array", "items": {"type": "integer", "minimum": 0}},
- {"type": "integer"}
- ]
- },
- {
- "name": "callback",
- "type": "function",
- "parameters": []
- }
- ]
- },
- {
- "name": "takesIntegersOptional",
- "type": "function",
- "description": "Takes one or more integers.",
- "parameters": [
- {
- "name": "nums",
- "choices": [
- {"type": "array", "items": {"type": "integer", "minimum": 0}},
- {"type": "integer"}
- ],
- "optional": true
- },
- {
- "name": "callback",
- "type": "function",
- "parameters": []
- }
- ]
- },
- {
- "name": "objectWithChoices",
- "type": "function",
- "description": "Takes an object with one or more strings and optional integer(s).",
- "parameters": [
- {
- "type": "object",
- "name": "stringInfo",
- "properties": {
- "strings": {
- "description": "One or more tab indices to highlight.",
- "choices": [
- {"type": "array", "items": {"type": "string", "minimum": 0}},
- {"type": "string"}
- ]
- },
- "integers": {
- "description": "One or more tab indices to highlight.",
- "choices": [
- {"type": "array", "items": {"type": "integer", "minimum": 0}},
- {"type": "integer"}
- ],
- "optional": true
- }
- }
- },
- {
- "name": "callback",
- "type": "function",
- "parameters": []
- }
- ]
- },
- {
- "name": "returnChoices",
- "type": "function",
- "description": "Gives back a string. Or not.",
- "parameters": [
- {
- "name": "callback",
- "type": "function",
- "parameters": [
- {
- "name": "result",
- "choices": [
- {"type": "array", "items": {"type": "integer", "minimum": 0}},
- {"type": "integer"}
- ],
- "description": "Some integers."
- }
- ]
- }
- ]
- },
- {
- "name": "returnMultipleChoices",
- "type": "function",
- "description": "Gives back two values where each is an integer or a list of integers.",
- "parameters": [
- {
- "name": "callback",
- "type": "function",
- "parameters": [
- {
- "name": "firstResult",
- "choices": [
- {"type": "array", "items": {"type": "integer", "minimum": 0}},
- {"type": "integer"}
- ],
- "description": "Some integers."
- },
- {
- "name": "secondResult",
- "choices": [
- {"type": "array", "items": {"type": "integer", "minimum": 0}},
- {"type": "integer"}
- ],
- "description": "Some integers."
- }
- ]
- }
- ]
- }
- ]
- }
-]
« no previous file with comments | « tools/json_schema_compiler/test/callbacks_unittest.cc ('k') | tools/json_schema_compiler/test/choices_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698