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

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

Issue 1409693007: DevTools fixes #459685. Right Clicking on an element should show "Store as Global Variable". (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Making context menu message a bit more descriptive. Created 5 years, 1 month 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.PanelFactory", 4 "type": "@WebInspector.PanelFactory",
5 "name": "sources", 5 "name": "sources",
6 "title": "Sources", 6 "title": "Sources",
7 "order": 30, 7 "order": 30,
8 "className": "WebInspector.SourcesPanelFactory" 8 "className": "WebInspector.SourcesPanelFactory"
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.DOMNode", "WebInspector.NetworkR equest"],
13 "className": "WebInspector.SourcesPanel.ContextMenuProvider" 13 "className": "WebInspector.SourcesPanel.ContextMenuProvider"
14 }, 14 },
15 { 15 {
16 "type": "@WebInspector.ActionDelegate", 16 "type": "@WebInspector.ActionDelegate",
17 "actionId": "debugger.toggle-pause", 17 "actionId": "debugger.toggle-pause",
18 "iconClass": "pause-toolbar-item", 18 "iconClass": "pause-toolbar-item",
19 "className": "WebInspector.SourcesPanel.RevealingActionDelegate", 19 "className": "WebInspector.SourcesPanel.RevealingActionDelegate",
20 "contextTypes": ["WebInspector.SourcesPanel", "WebInspector.Shortcut Registry.ForwardedShortcut"], 20 "contextTypes": ["WebInspector.SourcesPanel", "WebInspector.Shortcut Registry.ForwardedShortcut"],
21 "bindings": [ 21 "bindings": [
22 { 22 {
(...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after
376 "filteredItemSelectionDialog.css", 376 "filteredItemSelectionDialog.css",
377 "uiList.css", 377 "uiList.css",
378 "navigatorView.css", 378 "navigatorView.css",
379 "revisionHistory.css", 379 "revisionHistory.css",
380 "serviceWorkersSidebar.css", 380 "serviceWorkersSidebar.css",
381 "sourcesPanel.css", 381 "sourcesPanel.css",
382 "sourcesSearch.css", 382 "sourcesSearch.css",
383 "sourcesView.css" 383 "sourcesView.css"
384 ] 384 ]
385 } 385 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698