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

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

Issue 1820393002: DevTools: [ux regression] There is no way to clear console history. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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": "@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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 "platform": "windows,linux", 42 "platform": "windows,linux",
43 "shortcut": "Ctrl+L" 43 "shortcut": "Ctrl+L"
44 }, 44 },
45 { 45 {
46 "platform": "mac", 46 "platform": "mac",
47 "shortcut": "Ctrl+L Meta+K" 47 "shortcut": "Ctrl+L Meta+K"
48 } 48 }
49 ] 49 ]
50 }, 50 },
51 { 51 {
52 "type": "@WebInspector.ActionDelegate",
53 "category": "Console",
54 "actionId": "console.clear.history",
55 "title": "Clear console history",
56 "className": "WebInspector.ConsoleView.ActionDelegate"
57 },
58 {
52 "type": "setting", 59 "type": "setting",
53 "category": "Console", 60 "category": "Console",
54 "title": "Hide network messages", 61 "title": "Hide network messages",
55 "settingName": "hideNetworkMessages", 62 "settingName": "hideNetworkMessages",
56 "settingType": "boolean", 63 "settingType": "boolean",
57 "defaultValue": false, 64 "defaultValue": false,
58 "options": [ 65 "options": [
59 { "value": true, "title": "Hide network messages" }, 66 { "value": true, "title": "Hide network messages" },
60 { "value": false, "title": "Show network messages" } 67 { "value": false, "title": "Show network messages" }
61 ] 68 ]
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 ], 105 ],
99 "scripts": [ 106 "scripts": [
100 "ConsoleViewMessage.js", 107 "ConsoleViewMessage.js",
101 "ConsoleView.js", 108 "ConsoleView.js",
102 "ConsolePanel.js" 109 "ConsolePanel.js"
103 ], 110 ],
104 "resources": [ 111 "resources": [
105 "consoleView.css" 112 "consoleView.css"
106 ] 113 ]
107 } 114 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698