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

Side by Side Diff: components/demo_ui/demo.json

Issue 925333002: Demo UI made with a help of WUG toolkit (DO NOT SEND TO CQ). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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 unified diff | Download patch
« no previous file with comments | « components/demo_ui/BUILD.gn ('k') | components/demo_ui/events/events_demo.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 {
2 "imports": [
3 "components/demo_ui/events/events_demo.json",
4 "components/demo_ui/strings/strings_demo.json",
5 "components/demo_ui/reuse/reuse_demo.json"
6 ],
7 "type": "demo",
8 "children": [
9 { "id": "events", "type": "events_demo" },
10 { "id": "strings", "type": "strings_demo" },
11 { "id": "reuse", "type": "reuse_demo" }
12 ],
13 "context": [
14 { "name": "boolean_default", "type": "boolean" },
15 { "name": "boolean_true", "type": "boolean", "default": true },
16 { "name": "boolean_false", "type": "boolean", "default": false },
17 { "name": "int_default", "type": "integer" },
18 { "name": "int_33", "type": "integer", "default": 33 },
19 { "name": "double_default", "type": "double" },
20 { "name": "double_pi", "type": "double", "default": 3.1415 },
21 { "name": "string_default", "type": "string" },
22 { "name": "string_hello", "default": "Hello!" },
23 { "name": "string_list_default", "type": "string_list" },
24 {
25 "name": "string_list_fibo",
26 "type": "string_list",
27 "default": ["1", "1", "2", "3", "5", "8", "13"]
28 },
29 { "name": "username"}
30 ]
31 }
OLDNEW
« no previous file with comments | « components/demo_ui/BUILD.gn ('k') | components/demo_ui/events/events_demo.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698