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

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

Issue 2783233005: DevTools: Move JavaScript and CSS outline into QuickOpen (Closed)
Patch Set: 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/sources/StyleSheetOutlineDialog.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": "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 209 matching lines...) Expand 10 before | Expand all | Expand 10 after
220 "prefix": "", 220 "prefix": "",
221 "className": "Sources.OpenFileQuickOpen" 221 "className": "Sources.OpenFileQuickOpen"
222 }, 222 },
223 { 223 {
224 "type": "@QuickOpen.FilteredListWidget.Provider", 224 "type": "@QuickOpen.FilteredListWidget.Provider",
225 "title": "Go to line", 225 "title": "Go to line",
226 "prefix": ":", 226 "prefix": ":",
227 "className": "Sources.GoToLineQuickOpen" 227 "className": "Sources.GoToLineQuickOpen"
228 }, 228 },
229 { 229 {
230 "type": "@QuickOpen.FilteredListWidget.Provider",
231 "title": "Go to symbol",
232 "prefix": "@",
233 "className": "Sources.OutlineQuickOpen"
234 },
235 {
230 "type": "context-menu-item", 236 "type": "context-menu-item",
231 "location": "mainMenu/navigate", 237 "location": "mainMenu/navigate",
232 "actionId": "sources.search.toggle" 238 "actionId": "sources.search.toggle"
233 }, 239 },
234 { 240 {
235 "type": "context-menu-item", 241 "type": "context-menu-item",
236 "location": "navigatorMenu/navigate", 242 "location": "navigatorMenu/navigate",
237 "actionId": "quickOpen.show" 243 "actionId": "quickOpen.show"
238 }, 244 },
239 { 245 {
(...skipping 379 matching lines...) Expand 10 before | Expand all | Expand 10 after
619 "CallStackSidebarPane.js", 625 "CallStackSidebarPane.js",
620 "DebuggerPausedMessage.js", 626 "DebuggerPausedMessage.js",
621 "SimpleHistoryManager.js", 627 "SimpleHistoryManager.js",
622 "EditingLocationHistoryManager.js", 628 "EditingLocationHistoryManager.js",
623 "EventListenerBreakpointsSidebarPane.js", 629 "EventListenerBreakpointsSidebarPane.js",
624 "FilePathScoreFunction.js", 630 "FilePathScoreFunction.js",
625 "FilteredUISourceCodeListProvider.js", 631 "FilteredUISourceCodeListProvider.js",
626 "GoToLineQuickOpen.js", 632 "GoToLineQuickOpen.js",
627 "SourceMapNamesResolver.js", 633 "SourceMapNamesResolver.js",
628 "JavaScriptBreakpointsSidebarPane.js", 634 "JavaScriptBreakpointsSidebarPane.js",
629 "JavaScriptOutlineDialog.js",
630 "JavaScriptSourceFrame.js", 635 "JavaScriptSourceFrame.js",
631 "CSSSourceFrame.js", 636 "CSSSourceFrame.js",
632 "NavigatorView.js", 637 "NavigatorView.js",
633 "RevisionHistoryView.js", 638 "RevisionHistoryView.js",
634 "ScopeChainSidebarPane.js", 639 "ScopeChainSidebarPane.js",
635 "SourcesNavigator.js", 640 "SourcesNavigator.js",
636 "StyleSheetOutlineDialog.js", 641 "OutlineQuickOpen.js",
637 "TabbedEditorContainer.js", 642 "TabbedEditorContainer.js",
638 "WatchExpressionsSidebarPane.js", 643 "WatchExpressionsSidebarPane.js",
639 "ThreadsSidebarPane.js", 644 "ThreadsSidebarPane.js",
640 "ScriptFormatterEditorAction.js", 645 "ScriptFormatterEditorAction.js",
641 "InplaceFormatterEditorAction.js", 646 "InplaceFormatterEditorAction.js",
642 "ScriptFormatter.js", 647 "ScriptFormatter.js",
643 "OpenFileQuickOpen.js", 648 "OpenFileQuickOpen.js",
644 "SourcesView.js", 649 "SourcesView.js",
645 "AdvancedSearchView.js", 650 "AdvancedSearchView.js",
646 "FileBasedSearchResultsPane.js", 651 "FileBasedSearchResultsPane.js",
(...skipping 13 matching lines...) Expand all
660 "navigatorView.css", 665 "navigatorView.css",
661 "revisionHistory.css", 666 "revisionHistory.css",
662 "serviceWorkersSidebar.css", 667 "serviceWorkersSidebar.css",
663 "sourcesPanel.css", 668 "sourcesPanel.css",
664 "sourcesSearch.css", 669 "sourcesSearch.css",
665 "sourcesView.css", 670 "sourcesView.css",
666 "threadsSidebarPane.css", 671 "threadsSidebarPane.css",
667 "dialog.css" 672 "dialog.css"
668 ] 673 ]
669 } 674 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/sources/StyleSheetOutlineDialog.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698