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

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

Issue 2814263002: DevTools: Show a list of availble QuickOpen providers (Closed)
Patch Set: Changes Created 3 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
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/quick_open/QuickOpen.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 "extensions": [ 2 "extensions": [
3 { 3 {
4 "type": "@QuickOpen.FilteredListWidget.Provider", 4 "type": "@QuickOpen.FilteredListWidget.Provider",
5 "title": "Run a command", 5 "title": "Run a command",
6 "prefix": ">", 6 "prefix": ">",
7 "className": "QuickOpen.CommandMenuProvider" 7 "className": "QuickOpen.CommandMenuProvider"
8 }, 8 },
9 { 9 {
10 "type": "@QuickOpen.FilteredListWidget.Provider",
11 "prefix": "?",
12 "className": "QuickOpen.HelpQuickOpen"
13 },
14 {
10 "type": "@UI.ActionDelegate", 15 "type": "@UI.ActionDelegate",
11 "actionId": "commandMenu.show", 16 "actionId": "commandMenu.show",
12 "className": "QuickOpen.CommandMenu.ShowActionDelegate", 17 "className": "QuickOpen.CommandMenu.ShowActionDelegate",
13 "bindings": [ 18 "bindings": [
14 { 19 {
15 "platform": "windows,linux", 20 "platform": "windows,linux",
16 "shortcut": "Ctrl+Shift+P" 21 "shortcut": "Ctrl+Shift+P"
17 }, 22 },
18 { 23 {
19 "platform": "mac", 24 "platform": "mac",
(...skipping 19 matching lines...) Expand all
39 ] 44 ]
40 } 45 }
41 ], 46 ],
42 "dependencies": [ 47 "dependencies": [
43 "ui", 48 "ui",
44 "diff" 49 "diff"
45 ], 50 ],
46 "scripts": [ 51 "scripts": [
47 "FilteredListWidget.js", 52 "FilteredListWidget.js",
48 "QuickOpen.js", 53 "QuickOpen.js",
49 "CommandMenu.js" 54 "CommandMenu.js",
55 "HelpQuickOpen.js"
50 ], 56 ],
51 "resources": [ 57 "resources": [
52 "filteredListWidget.css" 58 "filteredListWidget.css"
53 ] 59 ]
54 } 60 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/quick_open/QuickOpen.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698