OLD | NEW |
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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 }, | 55 }, |
56 { | 56 { |
57 "type": "setting", | 57 "type": "setting", |
58 "settingName": "pauseOnCaughtException", | 58 "settingName": "pauseOnCaughtException", |
59 "settingType": "boolean", | 59 "settingType": "boolean", |
60 "defaultValue": false | 60 "defaultValue": false |
61 }, | 61 }, |
62 { | 62 { |
63 "type": "setting", | 63 "type": "setting", |
64 "category": "Debugger", | 64 "category": "Debugger", |
| 65 "title": "Disable JavaScript", |
| 66 "settingName": "javaScriptDisabled", |
| 67 "settingType": "boolean", |
| 68 "storageType": "session", |
| 69 "order": 1, |
| 70 "defaultValue": false, |
| 71 "options": [ |
| 72 { |
| 73 "value": true, |
| 74 "title": "Disable JavaScript" |
| 75 }, |
| 76 { |
| 77 "value": false, |
| 78 "title": "Enable JavaScript" |
| 79 } |
| 80 ] |
| 81 }, |
| 82 { |
| 83 "type": "setting", |
| 84 "category": "Debugger", |
65 "title": "Disable async stack traces", | 85 "title": "Disable async stack traces", |
66 "settingName": "disableAsyncStackTraces", | 86 "settingName": "disableAsyncStackTraces", |
67 "settingType": "boolean", | 87 "settingType": "boolean", |
68 "defaultValue": false, | 88 "defaultValue": false, |
69 "order": 2, | 89 "order": 2, |
70 "options": [ | 90 "options": [ |
71 { | 91 { |
72 "value": true, | 92 "value": true, |
73 "title": "Do not capture async stack traces" | 93 "title": "Do not capture async stack traces" |
74 }, | 94 }, |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
155 "CSSMedia.js", | 175 "CSSMedia.js", |
156 "CSSMetadata.js", | 176 "CSSMetadata.js", |
157 "CSSModel.js", | 177 "CSSModel.js", |
158 "CSSProperty.js", | 178 "CSSProperty.js", |
159 "CSSRule.js", | 179 "CSSRule.js", |
160 "CSSStyleDeclaration.js", | 180 "CSSStyleDeclaration.js", |
161 "CSSStyleSheetHeader.js", | 181 "CSSStyleSheetHeader.js", |
162 "DOMDebuggerModel.js", | 182 "DOMDebuggerModel.js", |
163 "DOMModel.js", | 183 "DOMModel.js", |
164 "DebuggerModel.js", | 184 "DebuggerModel.js", |
| 185 "EmulationModel.js", |
165 "LayerTreeBase.js", | 186 "LayerTreeBase.js", |
166 "LogModel.js", | 187 "LogModel.js", |
167 "ServiceWorkerManager.js", | 188 "ServiceWorkerManager.js", |
168 "TracingManager.js", | 189 "TracingManager.js", |
169 "TracingModel.js", | 190 "TracingModel.js", |
170 "OverlayModel.js", | 191 "OverlayModel.js", |
171 "RuntimeModel.js", | 192 "RuntimeModel.js", |
172 "ScreenCaptureModel.js", | 193 "ScreenCaptureModel.js", |
173 "Script.js", | 194 "Script.js", |
174 "ServiceWorkerCacheModel.js", | 195 "ServiceWorkerCacheModel.js", |
175 "RemoteObject.js", | 196 "RemoteObject.js", |
176 "Resource.js", | 197 "Resource.js", |
177 "ResourceTreeModel.js", | 198 "ResourceTreeModel.js", |
178 "SecurityOriginManager.js", | 199 "SecurityOriginManager.js", |
179 "SourceMap.js", | 200 "SourceMap.js", |
180 "SourceMapManager.js", | 201 "SourceMapManager.js", |
181 "NetworkManager.js", | 202 "NetworkManager.js", |
182 "NetworkRequest.js", | 203 "NetworkRequest.js", |
183 "PaintProfiler.js", | 204 "PaintProfiler.js", |
184 "HeapProfilerModel.js", | 205 "HeapProfilerModel.js", |
185 "../SupportedCSSProperties.js", | 206 "../SupportedCSSProperties.js", |
186 "FilmStripModel.js" | 207 "FilmStripModel.js" |
187 ], | 208 ], |
188 "skip_compilation": [ | 209 "skip_compilation": [ |
189 "../SupportedCSSProperties.js" | 210 "../SupportedCSSProperties.js" |
190 ] | 211 ] |
191 } | 212 } |
OLD | NEW |