| OLD | NEW |
| 1 { | 1 { |
| 2 "extensions": [ | 2 "extensions": [ |
| 3 { | 3 { |
| 4 "type": "drawer-view", | 4 "type": "drawer-view", |
| 5 "name": "emulation", | 5 "name": "emulation", |
| 6 "title": "Emulation", | 6 "title": "Emulation", |
| 7 "experiment": "!deviceMode", | 7 "experiment": "!deviceMode", |
| 8 "order": 10, | 8 "order": 10, |
| 9 "persistence": "closeable", | 9 "persistence": "closeable", |
| 10 "className": "WebInspector.OverridesView" | 10 "className": "WebInspector.OverridesView" |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 "order": 10, | 93 "order": 10, |
| 94 "actionId": "emulation.toggle-device-toolbar" | 94 "actionId": "emulation.toggle-device-toolbar" |
| 95 }, | 95 }, |
| 96 { | 96 { |
| 97 "type": "drawer-view", | 97 "type": "drawer-view", |
| 98 "name": "sensors", | 98 "name": "sensors", |
| 99 "title": "Sensors", | 99 "title": "Sensors", |
| 100 "persistence": "closeable", | 100 "persistence": "closeable", |
| 101 "order": 100, | 101 "order": 100, |
| 102 "className": "WebInspector.SensorsView" | 102 "className": "WebInspector.SensorsView" |
| 103 }, |
| 104 { |
| 105 "type": "@WebInspector.ActionDelegate", |
| 106 "actionId": "emulation.open-app-banner", |
| 107 "className": "WebInspector.DeviceModeView.ActionDelegate", |
| 108 "title": "Open app banner" |
| 109 }, |
| 110 { |
| 111 "type": "context-menu-item", |
| 112 "location": "deviceModeMenu/tools", |
| 113 "order": 10, |
| 114 "actionId": "emulation.open-app-banner" |
| 103 } | 115 } |
| 104 ], | 116 ], |
| 105 "dependencies": [ | 117 "dependencies": [ |
| 106 "bindings", | 118 "bindings", |
| 107 "components", | 119 "components", |
| 108 "platform", | 120 "platform", |
| 109 "ui" | 121 "ui" |
| 110 ], | 122 ], |
| 111 "scripts": [ | 123 "scripts": [ |
| 112 "OverridesSupport.js", | 124 "OverridesSupport.js", |
| (...skipping 12 matching lines...) Expand all Loading... |
| 125 "resources": [ | 137 "resources": [ |
| 126 "devicesSettingsTab.css", | 138 "devicesSettingsTab.css", |
| 127 "deviceModeToolbar.css", | 139 "deviceModeToolbar.css", |
| 128 "deviceModeView.css", | 140 "deviceModeView.css", |
| 129 "mediaQueryInspector.css", | 141 "mediaQueryInspector.css", |
| 130 "responsiveDesignView.css", | 142 "responsiveDesignView.css", |
| 131 "overrides.css", | 143 "overrides.css", |
| 132 "sensors.css" | 144 "sensors.css" |
| 133 ] | 145 ] |
| 134 } | 146 } |
| OLD | NEW |