Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 { | 1 { |
| 2 "extensions": [ | 2 "extensions": [ |
| 3 { | 3 { |
| 4 "type": "view", | 4 "type": "view", |
| 5 "location": "panel", | 5 "location": "panel", |
| 6 "id": "sources", | 6 "id": "sources", |
| 7 "title": "Sources", | 7 "title": "Sources", |
| 8 "order": 30, | 8 "order": 30, |
| 9 "className": "Sources.SourcesPanel" | 9 "className": "Sources.SourcesPanel" |
| 10 }, | 10 }, |
| (...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 208 "contextTypes": [ | 208 "contextTypes": [ |
| 209 "SourceFrame.UISourceCodeFrame" | 209 "SourceFrame.UISourceCodeFrame" |
| 210 ], | 210 ], |
| 211 "bindings": [ | 211 "bindings": [ |
| 212 { | 212 { |
| 213 "shortcut": "Ctrl+Shift+E" | 213 "shortcut": "Ctrl+Shift+E" |
| 214 } | 214 } |
| 215 ] | 215 ] |
| 216 }, | 216 }, |
| 217 { | 217 { |
| 218 "type": "quick-open", | |
|
pfeldman
2017/02/07 02:10:03
@QuickOpen.QuickOpenProvider
einbinder
2017/02/28 23:59:07
Done.
| |
| 219 "title": "Open file", | |
| 220 "prefix": "", | |
| 221 "factoryName": "Sources.OpenResourceDialog" | |
| 222 }, | |
| 223 { | |
| 224 "type": "quick-open", | |
|
pfeldman
2017/02/07 02:10:03
ditto
einbinder
2017/02/28 23:59:07
Done.
| |
| 225 "title": "Go to line in file", | |
|
pfeldman
2017/02/07 02:10:03
Go to line
einbinder
2017/02/28 23:59:07
Done.
| |
| 226 "prefix": ":", | |
| 227 "className": "Sources.GoToLineDialog" | |
| 228 }, | |
| 229 { | |
| 218 "type": "context-menu-item", | 230 "type": "context-menu-item", |
| 219 "location": "mainMenu/navigate", | 231 "location": "mainMenu/navigate", |
| 220 "actionId": "sources.search.toggle" | 232 "actionId": "sources.search.toggle" |
| 221 }, | 233 }, |
| 222 { | 234 { |
| 223 "type": "context-menu-item", | 235 "type": "context-menu-item", |
| 224 "location": "navigatorMenu/navigate", | 236 "location": "navigatorMenu/navigate", |
| 225 "actionId": "sources.go-to-source" | 237 "actionId": "quickOpen.show" |
| 226 }, | 238 }, |
| 227 { | 239 { |
| 228 "type": "@Common.Revealer", | 240 "type": "@Common.Revealer", |
| 229 "contextTypes": [ | 241 "contextTypes": [ |
| 230 "Workspace.UILocation" | 242 "Workspace.UILocation" |
| 231 ], | 243 ], |
| 232 "className": "Sources.SourcesPanel.UILocationRevealer" | 244 "className": "Sources.SourcesPanel.UILocationRevealer" |
| 233 }, | 245 }, |
| 234 { | 246 { |
| 235 "type": "@Common.Revealer", | 247 "type": "@Common.Revealer", |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 331 "viewId": "navigator-contentScripts", | 343 "viewId": "navigator-contentScripts", |
| 332 "className": "Sources.ContentScriptsNavigatorView" | 344 "className": "Sources.ContentScriptsNavigatorView" |
| 333 }, | 345 }, |
| 334 { | 346 { |
| 335 "type": "@Sources.NavigatorView", | 347 "type": "@Sources.NavigatorView", |
| 336 "viewId": "navigator-snippets", | 348 "viewId": "navigator-snippets", |
| 337 "className": "Sources.SnippetsNavigatorView" | 349 "className": "Sources.SnippetsNavigatorView" |
| 338 }, | 350 }, |
| 339 { | 351 { |
| 340 "type": "@UI.ActionDelegate", | 352 "type": "@UI.ActionDelegate", |
| 341 "actionId": "sources.go-to-source", | |
| 342 "title": "Go to file...", | |
| 343 "className": "Sources.SourcesPanel.RevealingActionDelegate", | |
| 344 "order": 100, | |
| 345 "bindings": [ | |
| 346 { | |
| 347 "platform": "mac", | |
| 348 "shortcut": "Meta+P Meta+O" | |
| 349 }, | |
| 350 { | |
| 351 "platform": "windows,linux", | |
| 352 "shortcut": "Ctrl+P Ctrl+O" | |
| 353 } | |
| 354 ] | |
| 355 }, | |
| 356 { | |
| 357 "type": "@UI.ActionDelegate", | |
| 358 "actionId": "sources.switch-file", | 353 "actionId": "sources.switch-file", |
| 359 "className": "Sources.SourcesView.SwitchFileActionDelegate", | 354 "className": "Sources.SourcesView.SwitchFileActionDelegate", |
| 360 "contextTypes": [ | 355 "contextTypes": [ |
| 361 "Sources.SourcesView" | 356 "Sources.SourcesView" |
| 362 ], | 357 ], |
| 363 "bindings": [ | 358 "bindings": [ |
| 364 { | 359 { |
| 365 "shortcut": "Alt+O" | 360 "shortcut": "Alt+O" |
| 366 } | 361 } |
| 367 ] | 362 ] |
| (...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 620 "scripts": [ | 615 "scripts": [ |
| 621 "UIList.js", | 616 "UIList.js", |
| 622 "AddSourceMapURLDialog.js", | 617 "AddSourceMapURLDialog.js", |
| 623 "CallStackSidebarPane.js", | 618 "CallStackSidebarPane.js", |
| 624 "DebuggerPausedMessage.js", | 619 "DebuggerPausedMessage.js", |
| 625 "SimpleHistoryManager.js", | 620 "SimpleHistoryManager.js", |
| 626 "EditingLocationHistoryManager.js", | 621 "EditingLocationHistoryManager.js", |
| 627 "EventListenerBreakpointsSidebarPane.js", | 622 "EventListenerBreakpointsSidebarPane.js", |
| 628 "FilePathScoreFunction.js", | 623 "FilePathScoreFunction.js", |
| 629 "FilteredUISourceCodeListDelegate.js", | 624 "FilteredUISourceCodeListDelegate.js", |
| 625 "GoToLineDialog.js", | |
| 630 "SourceMapNamesResolver.js", | 626 "SourceMapNamesResolver.js", |
| 631 "JavaScriptBreakpointsSidebarPane.js", | 627 "JavaScriptBreakpointsSidebarPane.js", |
| 632 "JavaScriptOutlineDialog.js", | 628 "JavaScriptOutlineDialog.js", |
| 633 "JavaScriptSourceFrame.js", | 629 "JavaScriptSourceFrame.js", |
| 634 "CSSSourceFrame.js", | 630 "CSSSourceFrame.js", |
| 635 "NavigatorView.js", | 631 "NavigatorView.js", |
| 636 "RevisionHistoryView.js", | 632 "RevisionHistoryView.js", |
| 637 "ScopeChainSidebarPane.js", | 633 "ScopeChainSidebarPane.js", |
| 638 "SourcesNavigator.js", | 634 "SourcesNavigator.js", |
| 639 "StyleSheetOutlineDialog.js", | 635 "StyleSheetOutlineDialog.js", |
| (...skipping 23 matching lines...) Expand all Loading... | |
| 663 "navigatorTree.css", | 659 "navigatorTree.css", |
| 664 "navigatorView.css", | 660 "navigatorView.css", |
| 665 "revisionHistory.css", | 661 "revisionHistory.css", |
| 666 "serviceWorkersSidebar.css", | 662 "serviceWorkersSidebar.css", |
| 667 "sourcesPanel.css", | 663 "sourcesPanel.css", |
| 668 "sourcesSearch.css", | 664 "sourcesSearch.css", |
| 669 "sourcesView.css", | 665 "sourcesView.css", |
| 670 "dialog.css" | 666 "dialog.css" |
| 671 ] | 667 ] |
| 672 } | 668 } |
| OLD | NEW |