Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(276)

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/console/module.json

Issue 2651843003: DevTools: update console timestamp style (Closed)
Patch Set: ac Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 "type": "setting", 99 "type": "setting",
100 "category": "Console", 100 "category": "Console",
101 "title": "Log XMLHttpRequests", 101 "title": "Log XMLHttpRequests",
102 "settingName": "monitoringXHREnabled", 102 "settingName": "monitoringXHREnabled",
103 "settingType": "boolean", 103 "settingType": "boolean",
104 "defaultValue": false 104 "defaultValue": false
105 }, 105 },
106 { 106 {
107 "type": "setting", 107 "type": "setting",
108 "category": "Console", 108 "category": "Console",
109 "title": "Show timestamps", 109 "title": "Timestamps",
dgozman 2017/01/25 00:51:46 Timestamps:
luoe 2017/01/25 19:43:21 Done.
110 "settingName": "consoleTimestampsEnabled", 110 "settingName": "consoleTimestampFormat",
111 "settingType": "boolean", 111 "settingType": "enum",
112 "defaultValue": false, 112 "defaultValue": "none",
113 "options": [ 113 "options": [
114 { 114 {
115 "value": true, 115 "title": "Hide timestamps",
116 "title": "Show timestamps" 116 "text": "None",
117 "value": "none"
117 }, 118 },
118 { 119 {
119 "value": false, 120 "title": "Full",
120 "title": "Hide timestamps" 121 "text": "Full (yyyy-MM-dd HH:mm:ss.fff)",
dgozman 2017/01/25 00:51:46 I'd make text "Full", while showing the format in
luoe 2017/01/25 19:43:21 Done.
122 "value": "full"
123 },
124 {
125 "title": "Short",
126 "text": "Short (HH:mm:ss.fff)",
dgozman 2017/01/25 00:51:46 Same here.
luoe 2017/01/25 19:43:21 Done.
127 "value": "short"
121 } 128 }
122 ] 129 ]
123 }, 130 },
124 { 131 {
125 "type": "setting", 132 "type": "setting",
126 "category": "Console", 133 "category": "Console",
127 "title": "Autocomplete from history", 134 "title": "Autocomplete from history",
128 "settingName": "consoleHistoryAutocomplete", 135 "settingName": "consoleHistoryAutocomplete",
129 "settingType": "boolean", 136 "settingType": "boolean",
130 "defaultValue": true, 137 "defaultValue": true,
(...skipping 18 matching lines...) Expand all
149 "ConsoleViewport.js", 156 "ConsoleViewport.js",
150 "ConsoleViewMessage.js", 157 "ConsoleViewMessage.js",
151 "ConsolePrompt.js", 158 "ConsolePrompt.js",
152 "ConsoleView.js", 159 "ConsoleView.js",
153 "ConsolePanel.js" 160 "ConsolePanel.js"
154 ], 161 ],
155 "resources": [ 162 "resources": [
156 "consoleView.css" 163 "consoleView.css"
157 ] 164 ]
158 } 165 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698