| OLD | NEW |
| 1 { | 1 { |
| 2 "extensions": [ | 2 "extensions": [ |
| 3 { | 3 { |
| 4 "type": "view", | 4 "type": "view", |
| 5 "location": "panel", | 5 "location": "panel", |
| 6 "id": "network", | 6 "id": "network", |
| 7 "title": "Network", | 7 "title": "Network", |
| 8 "order": 40, | 8 "order": 40, |
| 9 "className": "WebInspector.NetworkPanel" | 9 "className": "Network.NetworkPanel" |
| 10 }, | 10 }, |
| 11 { | 11 { |
| 12 "type": "@WebInspector.ContextMenu.Provider", | 12 "type": "@UI.ContextMenu.Provider", |
| 13 "contextTypes": ["WebInspector.NetworkRequest", "WebInspector.Resour
ce", "WebInspector.UISourceCode"], | 13 "contextTypes": ["SDK.NetworkRequest", "SDK.Resource", "Workspace.UI
SourceCode"], |
| 14 "className": "WebInspector.NetworkPanel.ContextMenuProvider" | 14 "className": "Network.NetworkPanel.ContextMenuProvider" |
| 15 }, | 15 }, |
| 16 { | 16 { |
| 17 "type": "@WebInspector.Revealer", | 17 "type": "@Common.Revealer", |
| 18 "contextTypes": ["WebInspector.NetworkRequest"], | 18 "contextTypes": ["SDK.NetworkRequest"], |
| 19 "className": "WebInspector.NetworkPanel.RequestRevealer" | 19 "className": "Network.NetworkPanel.RequestRevealer" |
| 20 }, | 20 }, |
| 21 { | 21 { |
| 22 "type": "setting", | 22 "type": "setting", |
| 23 "category": "Network", | 23 "category": "Network", |
| 24 "title": "Color-code resource types", | 24 "title": "Color-code resource types", |
| 25 "settingName": "networkColorCodeResourceTypes", | 25 "settingName": "networkColorCodeResourceTypes", |
| 26 "settingType": "boolean", | 26 "settingType": "boolean", |
| 27 "defaultValue": false, | 27 "defaultValue": false, |
| 28 "tags": "color code, resource type", | 28 "tags": "color code, resource type", |
| 29 "options": [ | 29 "options": [ |
| 30 { "value": true, "title": "Color code by resource type" }, | 30 { "value": true, "title": "Color code by resource type" }, |
| 31 { "value": false, "title": "Use default colors" } | 31 { "value": false, "title": "Use default colors" } |
| 32 ] | 32 ] |
| 33 }, | 33 }, |
| 34 { | 34 { |
| 35 "type": "@WebInspector.ActionDelegate", | 35 "type": "@UI.ActionDelegate", |
| 36 "actionId": "network.blocked-urls.show", | 36 "actionId": "network.blocked-urls.show", |
| 37 "className": "WebInspector.BlockedURLsPane.ActionDelegate", | 37 "className": "Network.BlockedURLsPane.ActionDelegate", |
| 38 "iconClass": "largeicon-block", | 38 "iconClass": "largeicon-block", |
| 39 "title": "Block network requests" | 39 "title": "Block network requests" |
| 40 }, | 40 }, |
| 41 { | 41 { |
| 42 "type": "@WebInspector.ActionDelegate", | 42 "type": "@UI.ActionDelegate", |
| 43 "actionId": "network.toggle-recording", | 43 "actionId": "network.toggle-recording", |
| 44 "iconClass": "largeicon-start-recording", | 44 "iconClass": "largeicon-start-recording", |
| 45 "toggledIconClass": "largeicon-stop-recording", | 45 "toggledIconClass": "largeicon-stop-recording", |
| 46 "toggleWithRedColor": true, | 46 "toggleWithRedColor": true, |
| 47 "contextTypes": ["WebInspector.NetworkPanel"], | 47 "contextTypes": ["Network.NetworkPanel"], |
| 48 "className": "WebInspector.NetworkPanel.RecordActionDelegate", | 48 "className": "Network.NetworkPanel.RecordActionDelegate", |
| 49 "options": [ | 49 "options": [ |
| 50 { "value": true, "title": "Record network log" }, | 50 { "value": true, "title": "Record network log" }, |
| 51 { "value": false, "title": "Stop recording network log" } | 51 { "value": false, "title": "Stop recording network log" } |
| 52 ], | 52 ], |
| 53 "bindings": [ | 53 "bindings": [ |
| 54 { | 54 { |
| 55 "platform": "windows,linux", | 55 "platform": "windows,linux", |
| 56 "shortcut": "Ctrl+E" | 56 "shortcut": "Ctrl+E" |
| 57 }, | 57 }, |
| 58 { | 58 { |
| 59 "platform": "mac", | 59 "platform": "mac", |
| 60 "shortcut": "Meta+E" | 60 "shortcut": "Meta+E" |
| 61 } | 61 } |
| 62 ] | 62 ] |
| 63 }, | 63 }, |
| 64 { | 64 { |
| 65 "type": "view", | 65 "type": "view", |
| 66 "location": "drawer-view", | 66 "location": "drawer-view", |
| 67 "id": "network.blocked-urls", | 67 "id": "network.blocked-urls", |
| 68 "title": "Request blocking", | 68 "title": "Request blocking", |
| 69 "persistence": "closeable", | 69 "persistence": "closeable", |
| 70 "order": 60, | 70 "order": 60, |
| 71 "className": "WebInspector.BlockedURLsPane", | 71 "className": "Network.BlockedURLsPane", |
| 72 "experiment": "requestBlocking" | 72 "experiment": "requestBlocking" |
| 73 }, | 73 }, |
| 74 { | 74 { |
| 75 "type": "view", | 75 "type": "view", |
| 76 "location": "drawer-view", | 76 "location": "drawer-view", |
| 77 "id": "network.config", | 77 "id": "network.config", |
| 78 "title": "Network conditions", | 78 "title": "Network conditions", |
| 79 "persistence": "closeable", | 79 "persistence": "closeable", |
| 80 "order": 40, | 80 "order": 40, |
| 81 "className": "WebInspector.NetworkConfigView", | 81 "className": "Network.NetworkConfigView", |
| 82 "tags": "disk cache, network throttling, useragent, user agent" | 82 "tags": "disk cache, network throttling, useragent, user agent" |
| 83 } | 83 } |
| 84 ], | 84 ], |
| 85 "dependencies": [ | 85 "dependencies": [ |
| 86 "source_frame", | 86 "source_frame", |
| 87 "components", | 87 "components", |
| 88 "components_lazy", | 88 "components_lazy", |
| 89 "ui_lazy" | 89 "ui_lazy" |
| 90 ], | 90 ], |
| 91 "scripts": [ | 91 "scripts": [ |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 "networkPanel.css", | 123 "networkPanel.css", |
| 124 "networkWaterfallColumn.css", | 124 "networkWaterfallColumn.css", |
| 125 "requestCookiesView.css", | 125 "requestCookiesView.css", |
| 126 "requestHeadersTree.css", | 126 "requestHeadersTree.css", |
| 127 "requestHeadersView.css", | 127 "requestHeadersView.css", |
| 128 "webSocketFrameView.css", | 128 "webSocketFrameView.css", |
| 129 "xmlTree.css", | 129 "xmlTree.css", |
| 130 "xmlView.css" | 130 "xmlView.css" |
| 131 ] | 131 ] |
| 132 } | 132 } |
| OLD | NEW |