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

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

Issue 2679483002: DevTools: Create extensible QuickOpen control (Closed)
Patch Set: 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
Index: third_party/WebKit/Source/devtools/front_end/sources/module.json
diff --git a/third_party/WebKit/Source/devtools/front_end/sources/module.json b/third_party/WebKit/Source/devtools/front_end/sources/module.json
index ee10edb1db0ffda81318a5c8f619938112df25f1..5429a4f5431e3724c869fa0e52c59d8f815df0d1 100644
--- a/third_party/WebKit/Source/devtools/front_end/sources/module.json
+++ b/third_party/WebKit/Source/devtools/front_end/sources/module.json
@@ -215,6 +215,18 @@
]
},
{
+ "type": "quick-open",
pfeldman 2017/02/07 02:10:03 @QuickOpen.QuickOpenProvider
einbinder 2017/02/28 23:59:07 Done.
+ "title": "Open file",
+ "prefix": "",
+ "factoryName": "Sources.OpenResourceDialog"
+ },
+ {
+ "type": "quick-open",
pfeldman 2017/02/07 02:10:03 ditto
einbinder 2017/02/28 23:59:07 Done.
+ "title": "Go to line in file",
pfeldman 2017/02/07 02:10:03 Go to line
einbinder 2017/02/28 23:59:07 Done.
+ "prefix": ":",
+ "className": "Sources.GoToLineDialog"
+ },
+ {
"type": "context-menu-item",
"location": "mainMenu/navigate",
"actionId": "sources.search.toggle"
@@ -222,7 +234,7 @@
{
"type": "context-menu-item",
"location": "navigatorMenu/navigate",
- "actionId": "sources.go-to-source"
+ "actionId": "quickOpen.show"
},
{
"type": "@Common.Revealer",
@@ -338,23 +350,6 @@
},
{
"type": "@UI.ActionDelegate",
- "actionId": "sources.go-to-source",
- "title": "Go to file...",
- "className": "Sources.SourcesPanel.RevealingActionDelegate",
- "order": 100,
- "bindings": [
- {
- "platform": "mac",
- "shortcut": "Meta+P Meta+O"
- },
- {
- "platform": "windows,linux",
- "shortcut": "Ctrl+P Ctrl+O"
- }
- ]
- },
- {
- "type": "@UI.ActionDelegate",
"actionId": "sources.switch-file",
"className": "Sources.SourcesView.SwitchFileActionDelegate",
"contextTypes": [
@@ -627,6 +622,7 @@
"EventListenerBreakpointsSidebarPane.js",
"FilePathScoreFunction.js",
"FilteredUISourceCodeListDelegate.js",
+ "GoToLineDialog.js",
"SourceMapNamesResolver.js",
"JavaScriptBreakpointsSidebarPane.js",
"JavaScriptOutlineDialog.js",

Powered by Google App Engine
This is Rietveld 408576698