| 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 "settingName": "enableAsyncStackTraces", | 65 "title": "Disable async stack traces", |
| 66 "settingName": "disableAsyncStackTraces", |
| 66 "settingType": "boolean", | 67 "settingType": "boolean", |
| 67 "defaultValue": false, | 68 "defaultValue": false, |
| 69 "order": 2, |
| 68 "options": [ | 70 "options": [ |
| 69 { | 71 { |
| 70 "value": true, | 72 "value": true, |
| 71 "title": "Capture async stack traces" | 73 "title": "Do not capture async stack traces" |
| 72 }, | 74 }, |
| 73 { | 75 { |
| 74 "value": false, | 76 "value": false, |
| 75 "title": "Do not capture async stack traces" | 77 "title": "Capture async stack traces" |
| 76 } | 78 } |
| 77 ] | 79 ] |
| 78 }, | 80 }, |
| 79 { | 81 { |
| 80 "type": "setting", | 82 "type": "setting", |
| 81 "settingName": "showMetricsRulers", | 83 "settingName": "showMetricsRulers", |
| 82 "settingType": "boolean", | 84 "settingType": "boolean", |
| 83 "defaultValue": false | 85 "defaultValue": false |
| 84 }, | 86 }, |
| 85 { | 87 { |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 "NetworkRequest.js", | 153 "NetworkRequest.js", |
| 152 "PaintProfiler.js", | 154 "PaintProfiler.js", |
| 153 "HeapProfilerModel.js", | 155 "HeapProfilerModel.js", |
| 154 "../SupportedCSSProperties.js", | 156 "../SupportedCSSProperties.js", |
| 155 "FilmStripModel.js" | 157 "FilmStripModel.js" |
| 156 ], | 158 ], |
| 157 "skip_compilation": [ | 159 "skip_compilation": [ |
| 158 "../SupportedCSSProperties.js" | 160 "../SupportedCSSProperties.js" |
| 159 ] | 161 ] |
| 160 } | 162 } |
| OLD | NEW |