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

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

Issue 1855363002: DevTools: [ux regression] There is no way to clear console history. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2661
Patch Set: Created 4 years, 8 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 30 matching lines...) Expand all
41 "platform": "windows,linux", 41 "platform": "windows,linux",
42 "shortcut": "Ctrl+L" 42 "shortcut": "Ctrl+L"
43 }, 43 },
44 { 44 {
45 "platform": "mac", 45 "platform": "mac",
46 "shortcut": "Ctrl+L Meta+K" 46 "shortcut": "Ctrl+L Meta+K"
47 } 47 }
48 ] 48 ]
49 }, 49 },
50 { 50 {
51 "type": "@WebInspector.ActionDelegate",
52 "category": "Console",
53 "actionId": "console.clear.history",
54 "title": "Clear console history",
55 "className": "WebInspector.ConsoleView.ActionDelegate"
56 },
57 {
51 "type": "setting", 58 "type": "setting",
52 "category": "Console", 59 "category": "Console",
53 "title": "Hide network messages", 60 "title": "Hide network messages",
54 "settingName": "hideNetworkMessages", 61 "settingName": "hideNetworkMessages",
55 "settingType": "boolean", 62 "settingType": "boolean",
56 "defaultValue": false 63 "defaultValue": false
57 }, 64 },
58 { 65 {
59 "type": "setting", 66 "type": "setting",
60 "category": "Console", 67 "category": "Console",
(...skipping 24 matching lines...) Expand all
85 ], 92 ],
86 "scripts": [ 93 "scripts": [
87 "ConsoleViewMessage.js", 94 "ConsoleViewMessage.js",
88 "ConsoleView.js", 95 "ConsoleView.js",
89 "ConsolePanel.js" 96 "ConsolePanel.js"
90 ], 97 ],
91 "resources": [ 98 "resources": [
92 "consoleView.css" 99 "consoleView.css"
93 ] 100 ]
94 } 101 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698