| 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |