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 14 matching lines...) Expand all Loading... |
25 "defaultValue": false | 25 "defaultValue": false |
26 }, | 26 }, |
27 { | 27 { |
28 "type": "setting", | 28 "type": "setting", |
29 "category": "Console", | 29 "category": "Console", |
30 "title": "Preserve log upon navigation", | 30 "title": "Preserve log upon navigation", |
31 "settingName": "preserveConsoleLog", | 31 "settingName": "preserveConsoleLog", |
32 "settingType": "boolean", | 32 "settingType": "boolean", |
33 "defaultValue": false, | 33 "defaultValue": false, |
34 "options": [ | 34 "options": [ |
35 { "value": true, "title": "Preserve log upon navigation" }, | 35 { |
36 { "value": false, "title": "Do not preserve log upon navigation"
} | 36 "value": true, |
| 37 "title": "Preserve log upon navigation" |
| 38 }, |
| 39 { |
| 40 "value": false, |
| 41 "title": "Do not preserve log upon navigation" |
| 42 } |
37 ] | 43 ] |
38 }, | 44 }, |
39 { | 45 { |
40 "type": "setting", | 46 "type": "setting", |
41 "category": "Debugger", | 47 "category": "Debugger", |
42 "settingName": "pauseOnExceptionEnabled", | 48 "settingName": "pauseOnExceptionEnabled", |
43 "settingType": "boolean", | 49 "settingType": "boolean", |
44 "defaultValue": false, | 50 "defaultValue": false, |
45 "options": [ | 51 "options": [ |
46 { "value": true, "title": "Pause on exceptions" }, | 52 { |
47 { "value": false, "title": "Do not pause on exceptions" } | 53 "value": true, |
| 54 "title": "Pause on exceptions" |
| 55 }, |
| 56 { |
| 57 "value": false, |
| 58 "title": "Do not pause on exceptions" |
| 59 } |
48 ] | 60 ] |
49 }, | 61 }, |
50 { | 62 { |
51 "type": "setting", | 63 "type": "setting", |
52 "settingName": "pauseOnCaughtException", | 64 "settingName": "pauseOnCaughtException", |
53 "settingType": "boolean", | 65 "settingType": "boolean", |
54 "defaultValue": false | 66 "defaultValue": false |
55 }, | 67 }, |
56 { | 68 { |
57 "type": "setting", | 69 "type": "setting", |
58 "category": "Debugger", | 70 "category": "Debugger", |
59 "settingName": "enableAsyncStackTraces", | 71 "settingName": "enableAsyncStackTraces", |
60 "settingType": "boolean", | 72 "settingType": "boolean", |
61 "defaultValue": false, | 73 "defaultValue": false, |
62 "options": [ | 74 "options": [ |
63 { "value": true, "title": "Capture async stack traces" }, | 75 { |
64 { "value": false, "title": "Do not capture async stack traces" } | 76 "value": true, |
| 77 "title": "Capture async stack traces" |
| 78 }, |
| 79 { |
| 80 "value": false, |
| 81 "title": "Do not capture async stack traces" |
| 82 } |
65 ] | 83 ] |
66 }, | 84 }, |
67 { | 85 { |
68 "type": "setting", | 86 "type": "setting", |
69 "settingName": "showMetricsRulers", | 87 "settingName": "showMetricsRulers", |
70 "settingType": "boolean", | 88 "settingType": "boolean", |
71 "defaultValue": false | 89 "defaultValue": false |
72 } | 90 } |
73 ], | 91 ], |
74 "scripts": [ | 92 "scripts": [ |
(...skipping 30 matching lines...) Expand all Loading... |
105 "ServiceWorkerCacheModel.js", | 123 "ServiceWorkerCacheModel.js", |
106 "RemoteObject.js", | 124 "RemoteObject.js", |
107 "Resource.js", | 125 "Resource.js", |
108 "ResourceTreeModel.js", | 126 "ResourceTreeModel.js", |
109 "SecurityOriginManager.js", | 127 "SecurityOriginManager.js", |
110 "SourceMap.js", | 128 "SourceMap.js", |
111 "NetworkManager.js", | 129 "NetworkManager.js", |
112 "NetworkRequest.js", | 130 "NetworkRequest.js", |
113 "PaintProfiler.js", | 131 "PaintProfiler.js", |
114 "HeapProfilerModel.js", | 132 "HeapProfilerModel.js", |
115 "../SupportedCSSProperties.js" | 133 "../SupportedCSSProperties.js", |
| 134 "FilmStripModel.js" |
116 ], | 135 ], |
117 "skip_compilation": [ | 136 "skip_compilation": [ |
118 "../SupportedCSSProperties.js" | 137 "../SupportedCSSProperties.js" |
119 ] | 138 ] |
120 } | 139 } |
OLD | NEW |