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

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: followed up on the watch test. 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.T extRangeWithContent"],
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.SourcesPanel"],
154 "bindings": [
155 {
156 "shortcut": "Ctrl+Shift+A'"
157 }
158 ]
159 },
160 {
161 "type": "@WebInspector.ActionDelegate",
162 "actionId": "debugger.evaluate-selection",
163 "className": "WebInspector.SourcesPanel.DebuggingActionDelegate",
164 "title": "Evaluate in console",
165 "contextTypes": ["WebInspector.SourcesPanel"],
166 "bindings": [
167 {
168 "shortcut": "Ctrl+E'"
169 }
170 ]
171 },
172 {
149 "type": "context-menu-item", 173 "type": "context-menu-item",
150 "location": "mainMenu/navigate", 174 "location": "mainMenu/navigate",
151 "actionId": "sources.search.toggle" 175 "actionId": "sources.search.toggle"
152 }, 176 },
153 { 177 {
154 "type": "context-menu-item", 178 "type": "context-menu-item",
155 "location": "navigatorMenu/navigate", 179 "location": "navigatorMenu/navigate",
156 "actionId": "sources.go-to-source" 180 "actionId": "sources.go-to-source"
157 }, 181 },
158 { 182 {
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
401 "className": "WebInspector.ObjectEventListenersSidebarPane" 425 "className": "WebInspector.ObjectEventListenersSidebarPane"
402 }, 426 },
403 { 427 {
404 "type": "view", 428 "type": "view",
405 "location": "sources-sidebar", 429 "location": "sources-sidebar",
406 "id": "sources.eventListenerBreakpoints", 430 "id": "sources.eventListenerBreakpoints",
407 "title": "Event Listener Breakpoints", 431 "title": "Event Listener Breakpoints",
408 "order": 9, 432 "order": 9,
409 "persistence": "permanent", 433 "persistence": "permanent",
410 "className": "WebInspector.EventListenerBreakpointsSidebarPane" 434 "className": "WebInspector.EventListenerBreakpointsSidebarPane"
435 },
436 {
437 "type": "view",
438 "id": "sources.threads",
439 "title": "Threads",
440 "persistence": "permanent",
441 "className": "WebInspector.ThreadsSidebarPane"
442 },
443 {
444 "type": "view",
445 "id": "sources.scopeChain",
446 "title": "Scope",
447 "persistence": "permanent",
448 "className": "WebInspector.ScopeChainSidebarPane"
449 },
450 {
451 "type": "view",
452 "id": "sources.watch",
453 "title": "Watch",
454 "hasToolbar": true,
455 "persistence": "permanent",
456 "className": "WebInspector.WatchExpressionsSidebarPane"
457 },
458 {
459 "type": "view",
460 "id": "sources.jsBreakpoints",
461 "title": "Breakpoints",
462 "persistence": "permanent",
463 "className": "WebInspector.JavaScriptBreakpointsSidebarPane"
464 },
465 {
466 "type": "@WebInspector.ContextFlavorListener",
467 "contextTypes": ["WebInspector.DebuggerPausedDetails"],
468 "className": "WebInspector.JavaScriptBreakpointsSidebarPane"
469 },
470 {
471 "type": "@WebInspector.ContextFlavorListener",
472 "contextTypes": ["WebInspector.DebuggerPausedDetails"],
473 "className": "WebInspector.XHRBreakpointsSidebarPane"
474 },
475 {
476 "type": "@WebInspector.ContextFlavorListener",
477 "contextTypes": ["WebInspector.DebuggerPausedDetails"],
478 "className": "WebInspector.DOMBreakpointsSidebarPane"
479 },
480 {
481 "type": "@WebInspector.ContextFlavorListener",
482 "contextTypes": ["WebInspector.DebuggerPausedDetails"],
483 "className": "WebInspector.CallStackSidebarPane"
411 } 484 }
412 ], 485 ],
413 "dependencies": [ 486 "dependencies": [
414 "components", 487 "components",
415 "source_frame", 488 "source_frame",
416 "snippets", 489 "snippets",
417 "ui_lazy", 490 "ui_lazy",
418 "extensions" 491 "extensions"
419 ], 492 ],
420 "scripts": [ 493 "scripts": [
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
458 "resources": [ 531 "resources": [
459 "uiList.css", 532 "uiList.css",
460 "navigatorView.css", 533 "navigatorView.css",
461 "revisionHistory.css", 534 "revisionHistory.css",
462 "serviceWorkersSidebar.css", 535 "serviceWorkersSidebar.css",
463 "sourcesPanel.css", 536 "sourcesPanel.css",
464 "sourcesSearch.css", 537 "sourcesSearch.css",
465 "sourcesView.css" 538 "sourcesView.css"
466 ] 539 ]
467 } 540 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698