Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7)

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/emulation/module.json

Issue 2141273002: Reland of DevTools: automatically populate 'More tools' submenu with the drawer views. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 {
109 "type": "drawer-view", 103 "type": "drawer-view",
110 "name": "sensors", 104 "name": "sensors",
111 "title": "Sensors", 105 "title": "Sensors",
112 "persistence": "closeable", 106 "persistence": "closeable",
113 "order": 100, 107 "order": 100,
114 "className": "WebInspector.SensorsView", 108 "className": "WebInspector.SensorsView",
115 "tags": "geolocation, accelerometer, device orientation" 109 "tags": "geolocation, accelerometer, device orientation"
116 } 110 }
117 ], 111 ],
118 "dependencies": [ 112 "dependencies": [
(...skipping 18 matching lines...) Expand all
137 "DeviceModeWrapper.js" 131 "DeviceModeWrapper.js"
138 ], 132 ],
139 "resources": [ 133 "resources": [
140 "devicesSettingsTab.css", 134 "devicesSettingsTab.css",
141 "deviceModeToolbar.css", 135 "deviceModeToolbar.css",
142 "deviceModeView.css", 136 "deviceModeView.css",
143 "mediaQueryInspector.css", 137 "mediaQueryInspector.css",
144 "sensors.css" 138 "sensors.css"
145 ] 139 ]
146 } 140 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698