| OLD | NEW |
| 1 { | 1 { |
| 2 "extensions": [ | 2 "extensions": [ |
| 3 { | 3 { |
| 4 "type": "@WebInspector.PanelFactory", | 4 "type": "@WebInspector.PanelFactory", |
| 5 "name": "console", | 5 "name": "console", |
| 6 "title": "Console", | 6 "title": "Console", |
| 7 "order": 20, | 7 "order": 20, |
| 8 "className": "WebInspector.ConsolePanelFactory" | 8 "className": "WebInspector.ConsolePanelFactory" |
| 9 }, | 9 }, |
| 10 { | 10 { |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 "type": "setting", | 91 "type": "setting", |
| 92 "category": "Console", | 92 "category": "Console", |
| 93 "title": "Show timestamps", | 93 "title": "Show timestamps", |
| 94 "settingName": "consoleTimestampsEnabled", | 94 "settingName": "consoleTimestampsEnabled", |
| 95 "settingType": "boolean", | 95 "settingType": "boolean", |
| 96 "defaultValue": false, | 96 "defaultValue": false, |
| 97 "options": [ | 97 "options": [ |
| 98 { "value": true, "title": "Show timestamps" }, | 98 { "value": true, "title": "Show timestamps" }, |
| 99 { "value": false, "title": "Hide timestamps" } | 99 { "value": false, "title": "Hide timestamps" } |
| 100 ] | 100 ] |
| 101 }, |
| 102 { |
| 103 "type": "setting", |
| 104 "category": "Console", |
| 105 "title": "Autocomplete from history", |
| 106 "settingName": "consoleHistoryAutocomplete", |
| 107 "settingType": "boolean", |
| 108 "defaultValue": true, |
| 109 "options": [ |
| 110 { "value": true, "title": "Autocomplete from history" }, |
| 111 { "value": false, "title": "Do not autocomplete from history" } |
| 112 ] |
| 101 } | 113 } |
| 102 ], | 114 ], |
| 103 "dependencies": [ | 115 "dependencies": [ |
| 104 "components", "ui_lazy" | 116 "components", "ui_lazy" |
| 105 ], | 117 ], |
| 106 "scripts": [ | 118 "scripts": [ |
| 107 "ConsoleViewMessage.js", | 119 "ConsoleViewMessage.js", |
| 108 "ConsoleView.js", | 120 "ConsoleView.js", |
| 109 "ConsolePanel.js" | 121 "ConsolePanel.js" |
| 110 ], | 122 ], |
| 111 "resources": [ | 123 "resources": [ |
| 112 "consoleView.css" | 124 "consoleView.css" |
| 113 ] | 125 ] |
| 114 } | 126 } |
| OLD | NEW |