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

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

Issue 2683713004: DevTools: revert of timestamp format dropdown (Closed)
Patch Set: wrong upstream 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/console/ConsoleViewMessage.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/devtools/front_end/console/module.json
diff --git a/third_party/WebKit/Source/devtools/front_end/console/module.json b/third_party/WebKit/Source/devtools/front_end/console/module.json
index 63642bd3825f7fdcf637bdc2d42f35ac33ed129f..9c0ba5a39471bd0688eaa998242fad7b68a4e518 100644
--- a/third_party/WebKit/Source/devtools/front_end/console/module.json
+++ b/third_party/WebKit/Source/devtools/front_end/console/module.json
@@ -88,25 +88,18 @@
{
"type": "setting",
"category": "Console",
- "title": "Timestamps:",
- "settingName": "consoleTimestampFormat",
- "settingType": "enum",
- "defaultValue": "none",
+ "title": "Show timestamps",
+ "settingName": "consoleTimestampsEnabled",
+ "settingType": "boolean",
+ "defaultValue": false,
"options": [
{
- "title": "Hide timestamps",
- "text": "None",
- "value": "none"
- },
- {
- "title": "Full (yyyy-MM-dd HH:mm:ss.fff)",
- "text": "Full",
- "value": "full"
+ "value": true,
+ "title": "Show timestamps"
},
{
- "title": "Short (HH:mm:ss.fff)",
- "text": "Short",
- "value": "short"
+ "value": false,
+ "title": "Hide timestamps"
}
]
},
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/console/ConsoleViewMessage.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698