Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 { | 1 { |
| 2 "extensions": [ | 2 "extensions": [ |
| 3 { | 3 { |
| 4 "type": "view", | 4 "type": "view", |
| 5 "location": "panel", | 5 "location": "panel", |
| 6 "id": "console", | 6 "id": "console", |
| 7 "title": "Console", | 7 "title": "Console", |
| 8 "order": 20, | 8 "order": 20, |
| 9 "className": "Console.ConsolePanel" | 9 "className": "Console.ConsolePanel" |
| 10 }, | 10 }, |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 73 }, | 73 }, |
| 74 { | 74 { |
| 75 "value": false, | 75 "value": false, |
| 76 "title": "Show network messages" | 76 "title": "Show network messages" |
| 77 } | 77 } |
| 78 ] | 78 ] |
| 79 }, | 79 }, |
| 80 { | 80 { |
| 81 "type": "setting", | 81 "type": "setting", |
| 82 "category": "Console", | 82 "category": "Console", |
| 83 "title": "Selected context only", | |
| 84 "settingName": "selectedContextFilterEnabled", | |
|
pfeldman
2017/05/23 20:56:32
Let's make both 'session' for now.
luoe
2017/05/23 21:03:45
Done.
| |
| 85 "settingType": "boolean", | |
| 86 "defaultValue": false, | |
| 87 "options": [ | |
| 88 { | |
| 89 "value": true, | |
| 90 "title": "Only show messages from the current context" | |
| 91 }, | |
| 92 { | |
| 93 "value": false, | |
| 94 "title": "Show messages from all contexts" | |
| 95 } | |
| 96 ] | |
| 97 }, | |
| 98 { | |
| 99 "type": "setting", | |
| 100 "category": "Console", | |
| 101 "title": "User messages only", | |
| 102 "settingName": "consoleAPIFilterEnabled", | |
| 103 "settingType": "boolean", | |
| 104 "defaultValue": false, | |
| 105 "options": [ | |
| 106 { | |
| 107 "value": true, | |
| 108 "title": "Only show console API messages, filter out other s ources" | |
| 109 }, | |
| 110 { | |
| 111 "value": false, | |
| 112 "title": "Show messages from all sources" | |
| 113 } | |
| 114 ] | |
| 115 }, | |
| 116 { | |
| 117 "type": "setting", | |
| 118 "category": "Console", | |
| 83 "title": "Log XMLHttpRequests", | 119 "title": "Log XMLHttpRequests", |
| 84 "settingName": "monitoringXHREnabled", | 120 "settingName": "monitoringXHREnabled", |
| 85 "settingType": "boolean", | 121 "settingType": "boolean", |
| 86 "defaultValue": false | 122 "defaultValue": false |
| 87 }, | 123 }, |
| 88 { | 124 { |
| 89 "type": "setting", | 125 "type": "setting", |
| 90 "category": "Console", | 126 "category": "Console", |
| 91 "title": "Show timestamps", | 127 "title": "Show timestamps", |
| 92 "settingName": "consoleTimestampsEnabled", | 128 "settingName": "consoleTimestampsEnabled", |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 136 "ConsolePrompt.js", | 172 "ConsolePrompt.js", |
| 137 "ConsoleView.js", | 173 "ConsoleView.js", |
| 138 "ConsolePanel.js" | 174 "ConsolePanel.js" |
| 139 ], | 175 ], |
| 140 "resources": [ | 176 "resources": [ |
| 141 "consoleContextSelector.css", | 177 "consoleContextSelector.css", |
| 142 "consoleContextSelectorButton.css", | 178 "consoleContextSelectorButton.css", |
| 143 "consoleView.css" | 179 "consoleView.css" |
| 144 ] | 180 ] |
| 145 } | 181 } |
| OLD | NEW |