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

Side by Side Diff: Source/devtools/front_end/network/module.json

Issue 1310073007: Devtools UI: Add toggle record shortcut in network panel (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Update Mac shortcut Created 5 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « Source/devtools/front_end/network/NetworkPanel.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": "@WebInspector.PanelFactory", 4 "type": "@WebInspector.PanelFactory",
5 "name": "network", 5 "name": "network",
6 "title": "Network", 6 "title": "Network",
7 "order": 1, 7 "order": 1,
8 "className": "WebInspector.NetworkPanelFactory" 8 "className": "WebInspector.NetworkPanelFactory"
9 }, 9 },
10 { 10 {
(...skipping 15 matching lines...) Expand all
26 "experiment": "showPrimaryLoadWaterfallInNetworkTimeline", 26 "experiment": "showPrimaryLoadWaterfallInNetworkTimeline",
27 "defaultValue": false 27 "defaultValue": false
28 }, 28 },
29 { 29 {
30 "type": "setting", 30 "type": "setting",
31 "category": "Network", 31 "category": "Network",
32 "title": "Color-code resource types", 32 "title": "Color-code resource types",
33 "settingName": "networkColorCodeResourceTypes", 33 "settingName": "networkColorCodeResourceTypes",
34 "settingType": "boolean", 34 "settingType": "boolean",
35 "defaultValue": false 35 "defaultValue": false
36 },
37 {
38 "type": "@WebInspector.ActionDelegate",
39 "actionId": "network.toggle-recording",
40 "iconClass": "record-toolbar-item",
41 "contextTypes": ["WebInspector.NetworkPanel"],
42 "className": "WebInspector.NetworkPanel.RecordActionDelegate",
43 "bindings": [
44 {
45 "platform": "windows,linux",
46 "shortcut": "Ctrl+E"
47 },
48 {
49 "platform": "mac",
50 "shortcut": "Meta+E"
51 }
52 ]
36 } 53 }
37 ], 54 ],
38 "dependencies": [ 55 "dependencies": [
39 "source_frame", 56 "source_frame",
40 "components", 57 "components",
41 "components_lazy", 58 "components_lazy",
42 "ui_lazy" 59 "ui_lazy"
43 ], 60 ],
44 "scripts": [ 61 "scripts": [
45 "EventSourceMessagesView.js", 62 "EventSourceMessagesView.js",
(...skipping 19 matching lines...) Expand all
65 "resources": [ 82 "resources": [
66 "eventSourceMessagesView.css", 83 "eventSourceMessagesView.css",
67 "networkLogView.css", 84 "networkLogView.css",
68 "networkPanel.css", 85 "networkPanel.css",
69 "requestCookiesView.css", 86 "requestCookiesView.css",
70 "requestHeadersView.css", 87 "requestHeadersView.css",
71 "webSocketFrameView.css", 88 "webSocketFrameView.css",
72 "xmlView.css" 89 "xmlView.css"
73 ] 90 ]
74 } 91 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/network/NetworkPanel.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698