| 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 22 matching lines...) Expand all Loading... |
| 33 { | 33 { |
| 34 "platform": "mac", | 34 "platform": "mac", |
| 35 "shortcut": "Shift+Meta+M" | 35 "shortcut": "Shift+Meta+M" |
| 36 } | 36 } |
| 37 ] | 37 ] |
| 38 }, | 38 }, |
| 39 { | 39 { |
| 40 "type": "@WebInspector.ActionDelegate", | 40 "type": "@WebInspector.ActionDelegate", |
| 41 "actionId": "emulation.toggle-device-mode", | 41 "actionId": "emulation.toggle-device-mode", |
| 42 "className": "WebInspector.DeviceModeView.ActionDelegate", | 42 "className": "WebInspector.DeviceModeView.ActionDelegate", |
| 43 "condition": "can_dock", |
| 43 "experiment": "deviceMode", | 44 "experiment": "deviceMode", |
| 45 "title": "Toggle device mode", |
| 46 "iconClass": "phone-toolbar-item", |
| 44 "bindings": [ | 47 "bindings": [ |
| 45 { | 48 { |
| 46 "platform": "windows,linux", | 49 "platform": "windows,linux", |
| 47 "shortcut": "Shift+Ctrl+M" | 50 "shortcut": "Shift+Ctrl+M" |
| 48 }, | 51 }, |
| 49 { | 52 { |
| 50 "platform": "mac", | 53 "platform": "mac", |
| 51 "shortcut": "Shift+Meta+M" | 54 "shortcut": "Shift+Meta+M" |
| 52 } | 55 } |
| 53 ] | 56 ] |
| 54 }, | 57 }, |
| 55 { | 58 { |
| 56 "type": "@WebInspector.ActionDelegate", | 59 "type": "@WebInspector.ToolbarItem.Provider", |
| 57 "actionId": "emulation.toggle-device-toolbar", | 60 "actionId": "emulation.toggle-device-mode", |
| 58 "className": "WebInspector.DeviceModeView.ActionDelegate", | 61 "condition": "can_dock", |
| 59 "experiment": "deviceMode", | 62 "location": "main-toolbar-left", |
| 60 "title": "Toggle device toolbar" | 63 "order": 1 |
| 61 }, | 64 }, |
| 62 { | 65 { |
| 63 "type": "@WebInspector.Revealer", | 66 "type": "@WebInspector.Revealer", |
| 64 "contextTypes": ["WebInspector.OverridesSupport"], | 67 "contextTypes": ["WebInspector.OverridesSupport"], |
| 65 "className": "WebInspector.OverridesView.Revealer" | 68 "className": "WebInspector.OverridesView.Revealer" |
| 66 }, | 69 }, |
| 67 { | 70 { |
| 68 "type": "settings-view", | 71 "type": "settings-view", |
| 69 "name": "devices", | 72 "name": "devices", |
| 70 "title": "Devices", | 73 "title": "Devices", |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 "resources": [ | 128 "resources": [ |
| 126 "devicesSettingsTab.css", | 129 "devicesSettingsTab.css", |
| 127 "deviceModeToolbar.css", | 130 "deviceModeToolbar.css", |
| 128 "deviceModeView.css", | 131 "deviceModeView.css", |
| 129 "mediaQueryInspector.css", | 132 "mediaQueryInspector.css", |
| 130 "responsiveDesignView.css", | 133 "responsiveDesignView.css", |
| 131 "overrides.css", | 134 "overrides.css", |
| 132 "sensors.css" | 135 "sensors.css" |
| 133 ] | 136 ] |
| 134 } | 137 } |
| OLD | NEW |