OLD | NEW |
1 { | 1 { |
2 "extensions": [ | 2 "extensions": [ |
3 { | 3 { |
4 "type": "@WebInspector.ActionDelegate", | 4 "type": "@WebInspector.ActionDelegate", |
5 "actionId": "emulation.toggle-device-mode", | 5 "actionId": "emulation.toggle-device-mode", |
6 "className": "WebInspector.DeviceModeView.ActionDelegate", | 6 "className": "WebInspector.DeviceModeWrapper.ActionDelegate", |
7 "condition": "can_dock", | 7 "condition": "can_dock", |
8 "title": "Toggle device mode", | 8 "title": "Toggle device mode", |
9 "iconClass": "phone-toolbar-item", | 9 "iconClass": "phone-toolbar-item", |
10 "bindings": [ | 10 "bindings": [ |
11 { | 11 { |
12 "platform": "windows,linux", | 12 "platform": "windows,linux", |
13 "shortcut": "Shift+Ctrl+M" | 13 "shortcut": "Shift+Ctrl+M" |
14 }, | 14 }, |
15 { | 15 { |
16 "platform": "mac", | 16 "platform": "mac", |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 "type": "drawer-view", | 52 "type": "drawer-view", |
53 "name": "sensors", | 53 "name": "sensors", |
54 "title": "Sensors", | 54 "title": "Sensors", |
55 "persistence": "closeable", | 55 "persistence": "closeable", |
56 "order": 100, | 56 "order": 100, |
57 "className": "WebInspector.SensorsView" | 57 "className": "WebInspector.SensorsView" |
58 }, | 58 }, |
59 { | 59 { |
60 "type": "@WebInspector.ActionDelegate", | 60 "type": "@WebInspector.ActionDelegate", |
61 "actionId": "emulation.request-app-banner", | 61 "actionId": "emulation.request-app-banner", |
62 "className": "WebInspector.DeviceModeView.ActionDelegate", | 62 "className": "WebInspector.DeviceModeWrapper.ActionDelegate", |
63 "title": "Request app banner" | 63 "title": "Request app banner\u2026" |
64 }, | 64 }, |
65 { | 65 { |
66 "type": "context-menu-item", | 66 "type": "context-menu-item", |
67 "location": "deviceModeMenu/tools", | 67 "location": "deviceModeMenu/tools", |
| 68 "experiment": "appBanner", |
68 "order": 10, | 69 "order": 10, |
69 "actionId": "emulation.request-app-banner" | 70 "actionId": "emulation.request-app-banner" |
70 } | 71 } |
71 ], | 72 ], |
72 "dependencies": [ | 73 "dependencies": [ |
73 "bindings", | 74 "bindings", |
74 "components", | 75 "components", |
75 "platform", | 76 "platform", |
76 "ui" | 77 "ui" |
77 ], | 78 ], |
78 "scripts": [ | 79 "scripts": [ |
79 "EmulatedDevices.js", | 80 "EmulatedDevices.js", |
80 "DevicesSettingsTab.js", | 81 "DevicesSettingsTab.js", |
81 "DeviceOrientation.js", | 82 "DeviceOrientation.js", |
82 "Geolocation.js", | 83 "Geolocation.js", |
83 "InspectedPagePlaceholder.js", | 84 "InspectedPagePlaceholder.js", |
84 "MediaQueryInspector.js", | 85 "MediaQueryInspector.js", |
85 "SensorsView.js", | 86 "SensorsView.js", |
86 "DeviceModeModel.js", | 87 "DeviceModeModel.js", |
87 "DeviceModeView.js" | 88 "DeviceModeToolbar.js", |
| 89 "DeviceModeView.js", |
| 90 "DeviceModeWrapper.js" |
88 ], | 91 ], |
89 "resources": [ | 92 "resources": [ |
90 "devicesSettingsTab.css", | 93 "devicesSettingsTab.css", |
91 "deviceModeToolbar.css", | 94 "deviceModeToolbar.css", |
92 "deviceModeView.css", | 95 "deviceModeView.css", |
93 "mediaQueryInspector.css", | 96 "mediaQueryInspector.css", |
94 "sensors.css" | 97 "sensors.css" |
95 ] | 98 ] |
96 } | 99 } |
OLD | NEW |