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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/sdk/module.json

Issue 2678623002: DevTools: pass title when creating settings (Closed)
Patch Set: a Created 3 years, 10 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
OLDNEW
1 { 1 {
2 "dependencies": [ 2 "dependencies": [
3 "common", 3 "common",
4 "host", 4 "host",
5 "platform", 5 "platform",
6 "protocol" 6 "protocol"
7 ], 7 ],
8 "extensions": [ 8 "extensions": [
9 { 9 {
10 "type": "setting", 10 "type": "setting",
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 }, 61 },
62 { 62 {
63 "type": "setting", 63 "type": "setting",
64 "settingName": "pauseOnCaughtException", 64 "settingName": "pauseOnCaughtException",
65 "settingType": "boolean", 65 "settingType": "boolean",
66 "defaultValue": false 66 "defaultValue": false
67 }, 67 },
68 { 68 {
69 "type": "setting", 69 "type": "setting",
70 "category": "Debugger", 70 "category": "Debugger",
71 "title": "Async stack traces",
71 "settingName": "enableAsyncStackTraces", 72 "settingName": "enableAsyncStackTraces",
72 "settingType": "boolean", 73 "settingType": "boolean",
73 "defaultValue": false, 74 "defaultValue": false,
74 "options": [ 75 "options": [
75 { 76 {
76 "value": true, 77 "value": true,
77 "title": "Capture async stack traces" 78 "title": "Capture async stack traces"
78 }, 79 },
79 { 80 {
80 "value": false, 81 "value": false,
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 "NetworkRequest.js", 138 "NetworkRequest.js",
138 "PaintProfiler.js", 139 "PaintProfiler.js",
139 "HeapProfilerModel.js", 140 "HeapProfilerModel.js",
140 "../SupportedCSSProperties.js", 141 "../SupportedCSSProperties.js",
141 "FilmStripModel.js" 142 "FilmStripModel.js"
142 ], 143 ],
143 "skip_compilation": [ 144 "skip_compilation": [
144 "../SupportedCSSProperties.js" 145 "../SupportedCSSProperties.js"
145 ] 146 ]
146 } 147 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698