| OLD | NEW |
| 1 { | 1 { |
| 2 "extensions": [ | 2 "extensions": [ |
| 3 { | 3 { |
| 4 "type": "@WebInspector.AppProvider", | 4 "type": "@WebInspector.AppProvider", |
| 5 "condition": "can_dock", | 5 "condition": "can_dock", |
| 6 "className": "WebInspector.AdvancedAppProvider", | 6 "className": "WebInspector.AdvancedAppProvider", |
| 7 "order": 0 | 7 "order": 0 |
| 8 }, | 8 }, |
| 9 { | 9 { |
| 10 "type": "@WebInspector.ActionDelegate", | 10 "type": "@WebInspector.ActionDelegate", |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 "customEmulatedDeviceList" | 93 "customEmulatedDeviceList" |
| 94 ] | 94 ] |
| 95 }, | 95 }, |
| 96 { | 96 { |
| 97 "type": "@WebInspector.ActionDelegate", | 97 "type": "@WebInspector.ActionDelegate", |
| 98 "actionId": "emulation.show-sensors", | 98 "actionId": "emulation.show-sensors", |
| 99 "title": "Sensors", | 99 "title": "Sensors", |
| 100 "className": "WebInspector.SensorsView.ShowActionDelegate" | 100 "className": "WebInspector.SensorsView.ShowActionDelegate" |
| 101 }, | 101 }, |
| 102 { | 102 { |
| 103 "type": "context-menu-item", |
| 104 "location": "mainMenu/tools/open", |
| 105 "order": 100, |
| 106 "actionId": "emulation.show-sensors" |
| 107 }, |
| 108 { |
| 103 "type": "drawer-view", | 109 "type": "drawer-view", |
| 104 "name": "sensors", | 110 "name": "sensors", |
| 105 "title": "Sensors", | 111 "title": "Sensors", |
| 106 "persistence": "closeable", | 112 "persistence": "closeable", |
| 107 "order": 100, | 113 "order": 100, |
| 108 "className": "WebInspector.SensorsView", | 114 "className": "WebInspector.SensorsView", |
| 109 "tags": "geolocation, accelerometer, device orientation" | 115 "tags": "geolocation, accelerometer, device orientation" |
| 110 } | 116 } |
| 111 ], | 117 ], |
| 112 "dependencies": [ | 118 "dependencies": [ |
| (...skipping 18 matching lines...) Expand all Loading... |
| 131 "DeviceModeWrapper.js" | 137 "DeviceModeWrapper.js" |
| 132 ], | 138 ], |
| 133 "resources": [ | 139 "resources": [ |
| 134 "devicesSettingsTab.css", | 140 "devicesSettingsTab.css", |
| 135 "deviceModeToolbar.css", | 141 "deviceModeToolbar.css", |
| 136 "deviceModeView.css", | 142 "deviceModeView.css", |
| 137 "mediaQueryInspector.css", | 143 "mediaQueryInspector.css", |
| 138 "sensors.css" | 144 "sensors.css" |
| 139 ] | 145 ] |
| 140 } | 146 } |
| OLD | NEW |