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

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

Issue 2716683006: DevTools: add entry points for command menu (Closed)
Patch Set: ac 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
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", 10 "type": "@QuickOpen.FilteredListWidget.Provider",
(...skipping 24 matching lines...) Expand all
35 "bindings": [ 35 "bindings": [
36 { 36 {
37 "platform": "mac", 37 "platform": "mac",
38 "shortcut": "Meta+P Meta+O" 38 "shortcut": "Meta+P Meta+O"
39 }, 39 },
40 { 40 {
41 "platform": "windows,linux", 41 "platform": "windows,linux",
42 "shortcut": "Ctrl+P Ctrl+O" 42 "shortcut": "Ctrl+P Ctrl+O"
43 } 43 }
44 ] 44 ]
45 },
46 {
47 "type": "context-menu-item",
48 "location": "mainMenu/navigate",
49 "actionId": "quickOpen.show"
45 } 50 }
46 ], 51 ],
47 "dependencies": [ 52 "dependencies": [
48 "ui", 53 "ui",
49 "diff" 54 "diff"
50 ], 55 ],
51 "scripts": [ 56 "scripts": [
52 "FilteredListWidget.js", 57 "FilteredListWidget.js",
53 "QuickOpen.js", 58 "QuickOpen.js",
54 "CommandMenu.js", 59 "CommandMenu.js",
55 "HelpQuickOpen.js" 60 "HelpQuickOpen.js"
56 ], 61 ],
57 "resources": [ 62 "resources": [
58 "filteredListWidget.css" 63 "filteredListWidget.css"
59 ] 64 ]
60 } 65 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698