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

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

Issue 2238003002: DevTools: migrate sources panel sidebar to views. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comments addressed Created 4 years, 4 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": "@WebInspector.Panel", 4 "type": "@WebInspector.Panel",
5 "name": "sources", 5 "name": "sources",
6 "title": "Sources", 6 "title": "Sources",
7 "order": 30, 7 "order": 30,
8 "className": "WebInspector.SourcesPanel" 8 "className": "WebInspector.SourcesPanel"
9 }, 9 },
10 { 10 {
11 "type": "@WebInspector.ContextMenu.Provider", 11 "type": "@WebInspector.ContextMenu.Provider",
12 "contextTypes": ["WebInspector.UISourceCode", "WebInspector.UILocati on", "WebInspector.RemoteObject", "WebInspector.NetworkRequest"], 12 "contextTypes": ["WebInspector.UISourceCode", "WebInspector.UILocati on", "WebInspector.RemoteObject", "WebInspector.NetworkRequest", "WebInspector.U ISourceCodeFrame"],
13 "className": "WebInspector.SourcesPanel.ContextMenuProvider" 13 "className": "WebInspector.SourcesPanel"
14 }, 14 },
15 { 15 {
16 "type": "@WebInspector.ActionDelegate", 16 "type": "@WebInspector.ActionDelegate",
17 "category": "Debugger", 17 "category": "Debugger",
18 "actionId": "debugger.toggle-pause", 18 "actionId": "debugger.toggle-pause",
19 "iconClass": "pause-toolbar-item", 19 "iconClass": "pause-toolbar-item",
20 "className": "WebInspector.SourcesPanel.RevealingActionDelegate", 20 "className": "WebInspector.SourcesPanel.RevealingActionDelegate",
21 "contextTypes": ["WebInspector.SourcesPanel", "WebInspector.Shortcut Registry.ForwardedShortcut"], 21 "contextTypes": ["WebInspector.SourcesPanel", "WebInspector.Shortcut Registry.ForwardedShortcut"],
22 "options": [ 22 "options": [
23 { "value": true, "title": "Pause script execution" }, 23 { "value": true, "title": "Pause script execution" },
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 "platform": "windows,linux", 139 "platform": "windows,linux",
140 "shortcut": "Ctrl+F8" 140 "shortcut": "Ctrl+F8"
141 }, 141 },
142 { 142 {
143 "platform": "mac", 143 "platform": "mac",
144 "shortcut": "Meta+F8" 144 "shortcut": "Meta+F8"
145 } 145 }
146 ] 146 ]
147 }, 147 },
148 { 148 {
149 "type": "@WebInspector.ActionDelegate",
150 "actionId": "sources.add-to-watch",
151 "className": "WebInspector.WatchExpressionsSidebarPane",
152 "title": "Add selected text to watches",
153 "contextTypes": ["WebInspector.UISourceCodeFrame"],
154 "bindings": [
155 {
156 "shortcut": "Ctrl+Shift+A'"
157 }
158 ]
159 },
160 {
161 "type": "@WebInspector.ContextMenu.Provider",
162 "contextTypes": ["WebInspector.CodeMirrorTextEditor"],
163 "className": "WebInspector.WatchExpressionsSidebarPane"
164 },
165 {
166 "type": "@WebInspector.ActionDelegate",
167 "actionId": "debugger.evaluate-selection",
168 "className": "WebInspector.SourcesPanel.DebuggingActionDelegate",
169 "title": "Evaluate in console",
170 "contextTypes": ["WebInspector.UISourceCodeFrame"],
171 "bindings": [
172 {
173 "shortcut": "Ctrl+E'"
174 }
175 ]
176 },
177 {
149 "type": "context-menu-item", 178 "type": "context-menu-item",
150 "location": "mainMenu/navigate", 179 "location": "mainMenu/navigate",
151 "actionId": "sources.search.toggle" 180 "actionId": "sources.search.toggle"
152 }, 181 },
153 { 182 {
154 "type": "context-menu-item", 183 "type": "context-menu-item",
155 "location": "navigatorMenu/navigate", 184 "location": "navigatorMenu/navigate",
156 "actionId": "sources.go-to-source" 185 "actionId": "sources.go-to-source"
157 }, 186 },
158 { 187 {
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
401 "className": "WebInspector.ObjectEventListenersSidebarPane" 430 "className": "WebInspector.ObjectEventListenersSidebarPane"
402 }, 431 },
403 { 432 {
404 "type": "view", 433 "type": "view",
405 "location": "sources-sidebar", 434 "location": "sources-sidebar",
406 "id": "sources.eventListenerBreakpoints", 435 "id": "sources.eventListenerBreakpoints",
407 "title": "Event Listener Breakpoints", 436 "title": "Event Listener Breakpoints",
408 "order": 9, 437 "order": 9,
409 "persistence": "permanent", 438 "persistence": "permanent",
410 "className": "WebInspector.EventListenerBreakpointsSidebarPane" 439 "className": "WebInspector.EventListenerBreakpointsSidebarPane"
440 },
441 {
442 "type": "view",
443 "id": "sources.threads",
444 "title": "Threads",
445 "persistence": "permanent",
446 "className": "WebInspector.ThreadsSidebarPane"
447 },
448 {
449 "type": "view",
450 "id": "sources.scopeChain",
451 "title": "Scope",
452 "persistence": "permanent",
453 "className": "WebInspector.ScopeChainSidebarPane"
454 },
455 {
456 "type": "view",
457 "id": "sources.watch",
458 "title": "Watch",
459 "hasToolbar": true,
460 "persistence": "permanent",
461 "className": "WebInspector.WatchExpressionsSidebarPane"
462 },
463 {
464 "type": "view",
465 "id": "sources.jsBreakpoints",
466 "title": "Breakpoints",
467 "persistence": "permanent",
468 "className": "WebInspector.JavaScriptBreakpointsSidebarPane"
469 },
470 {
471 "type": "@WebInspector.ContextFlavorListener",
472 "contextTypes": ["WebInspector.DebuggerPausedDetails"],
473 "className": "WebInspector.JavaScriptBreakpointsSidebarPane"
474 },
475 {
476 "type": "@WebInspector.ContextFlavorListener",
477 "contextTypes": ["WebInspector.DebuggerPausedDetails"],
478 "className": "WebInspector.XHRBreakpointsSidebarPane"
479 },
480 {
481 "type": "@WebInspector.ContextFlavorListener",
482 "contextTypes": ["WebInspector.DebuggerPausedDetails"],
483 "className": "WebInspector.DOMBreakpointsSidebarPane"
484 },
485 {
486 "type": "@WebInspector.ContextFlavorListener",
487 "contextTypes": ["WebInspector.DebuggerPausedDetails"],
488 "className": "WebInspector.CallStackSidebarPane"
489 },
490 {
491 "type": "@WebInspector.ContextFlavorListener",
492 "contextTypes": ["WebInspector.DebuggerModel.CallFrame"],
493 "className": "WebInspector.ScopeChainSidebarPane"
411 } 494 }
412 ], 495 ],
413 "dependencies": [ 496 "dependencies": [
414 "components", 497 "components",
415 "source_frame", 498 "source_frame",
416 "snippets", 499 "snippets",
417 "ui_lazy", 500 "ui_lazy",
418 "extensions" 501 "extensions"
419 ], 502 ],
420 "scripts": [ 503 "scripts": [
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
458 "resources": [ 541 "resources": [
459 "uiList.css", 542 "uiList.css",
460 "navigatorView.css", 543 "navigatorView.css",
461 "revisionHistory.css", 544 "revisionHistory.css",
462 "serviceWorkersSidebar.css", 545 "serviceWorkersSidebar.css",
463 "sourcesPanel.css", 546 "sourcesPanel.css",
464 "sourcesSearch.css", 547 "sourcesSearch.css",
465 "sourcesView.css" 548 "sourcesView.css"
466 ] 549 ]
467 } 550 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698