| 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 "defaultValue": false, | 78 "defaultValue": false, |
| 79 "options": [ | 79 "options": [ |
| 80 {"value": true, "title": "Show device frame"}, | 80 {"value": true, "title": "Show device frame"}, |
| 81 {"value": false, "title": "Hide device frame"} | 81 {"value": false, "title": "Hide device frame"} |
| 82 ], | 82 ], |
| 83 "tags": "device" | 83 "tags": "device" |
| 84 }, | 84 }, |
| 85 { | 85 { |
| 86 "type": "view", | 86 "type": "view", |
| 87 "location": "settings-view", | 87 "location": "settings-view", |
| 88 "name": "devices", | 88 "id": "devices", |
| 89 "title": "Devices", | 89 "title": "Devices", |
| 90 "order": "30", | 90 "order": "30", |
| 91 "className": "WebInspector.DevicesSettingsTab", | 91 "className": "WebInspector.DevicesSettingsTab", |
| 92 "settings": [ | 92 "settings": [ |
| 93 "standardEmulatedDeviceList", | 93 "standardEmulatedDeviceList", |
| 94 "customEmulatedDeviceList" | 94 "customEmulatedDeviceList" |
| 95 ] | 95 ] |
| 96 }, | 96 }, |
| 97 { | 97 { |
| 98 "type": "@WebInspector.ActionDelegate", | 98 "type": "@WebInspector.ActionDelegate", |
| 99 "actionId": "emulation.show-sensors", | 99 "actionId": "emulation.show-sensors", |
| 100 "title": "Sensors", | 100 "title": "Sensors", |
| 101 "className": "WebInspector.SensorsView.ShowActionDelegate" | 101 "className": "WebInspector.SensorsView.ShowActionDelegate" |
| 102 }, | 102 }, |
| 103 { | 103 { |
| 104 "type": "view", | 104 "type": "view", |
| 105 "location": "drawer-view", | 105 "location": "drawer-view", |
| 106 "name": "sensors", | 106 "id": "sensors", |
| 107 "title": "Sensors", | 107 "title": "Sensors", |
| 108 "persistence": "closeable", | 108 "persistence": "closeable", |
| 109 "order": 100, | 109 "order": 100, |
| 110 "className": "WebInspector.SensorsView", | 110 "className": "WebInspector.SensorsView", |
| 111 "tags": "geolocation, accelerometer, device orientation" | 111 "tags": "geolocation, accelerometer, device orientation" |
| 112 } | 112 } |
| 113 ], | 113 ], |
| 114 "dependencies": [ | 114 "dependencies": [ |
| 115 "bindings", | 115 "bindings", |
| 116 "components", | 116 "components", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 133 "DeviceModeWrapper.js" | 133 "DeviceModeWrapper.js" |
| 134 ], | 134 ], |
| 135 "resources": [ | 135 "resources": [ |
| 136 "devicesSettingsTab.css", | 136 "devicesSettingsTab.css", |
| 137 "deviceModeToolbar.css", | 137 "deviceModeToolbar.css", |
| 138 "deviceModeView.css", | 138 "deviceModeView.css", |
| 139 "mediaQueryInspector.css", | 139 "mediaQueryInspector.css", |
| 140 "sensors.css" | 140 "sensors.css" |
| 141 ] | 141 ] |
| 142 } | 142 } |
| OLD | NEW |