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

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

Issue 2864263002: [DevTools] Expose TCP targets config in frontend, use it for Node (Closed)
Patch Set: panel Created 3 years, 7 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": "@Common.AppProvider", 4 "type": "@Common.AppProvider",
5 "condition": "can_dock", 5 "condition": "can_dock",
6 "className": "Emulation.AdvancedAppProvider", 6 "className": "Emulation.AdvancedAppProvider",
7 "order": 0 7 "order": 0
8 }, 8 },
9 { 9 {
10 "type": "@UI.ActionDelegate", 10 "type": "@UI.ActionDelegate",
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 "className": "Emulation.DevicesSettingsTab", 123 "className": "Emulation.DevicesSettingsTab",
124 "settings": [ 124 "settings": [
125 "standardEmulatedDeviceList", 125 "standardEmulatedDeviceList",
126 "customEmulatedDeviceList" 126 "customEmulatedDeviceList"
127 ] 127 ]
128 }, 128 },
129 { 129 {
130 "type": "@UI.ActionDelegate", 130 "type": "@UI.ActionDelegate",
131 "actionId": "emulation.show-sensors", 131 "actionId": "emulation.show-sensors",
132 "title": "Sensors", 132 "title": "Sensors",
133 "condition": "!v8only",
133 "className": "Emulation.SensorsView.ShowActionDelegate" 134 "className": "Emulation.SensorsView.ShowActionDelegate"
134 }, 135 },
135 { 136 {
136 "type": "view", 137 "type": "view",
137 "location": "drawer-view", 138 "location": "drawer-view",
138 "id": "sensors", 139 "id": "sensors",
139 "title": "Sensors", 140 "title": "Sensors",
141 "condition": "!v8only",
140 "persistence": "closeable", 142 "persistence": "closeable",
141 "order": 100, 143 "order": 100,
142 "className": "Emulation.SensorsView", 144 "className": "Emulation.SensorsView",
143 "tags": "geolocation, accelerometer, device orientation" 145 "tags": "geolocation, accelerometer, device orientation"
144 } 146 }
145 ], 147 ],
146 "dependencies": [ 148 "dependencies": [
147 "bindings", 149 "bindings",
148 "components", 150 "components",
149 "platform", 151 "platform",
(...skipping 14 matching lines...) Expand all
164 ], 166 ],
165 "resources": [ 167 "resources": [
166 "devicesSettingsTab.css", 168 "devicesSettingsTab.css",
167 "deviceModeToolbar.css", 169 "deviceModeToolbar.css",
168 "deviceModeView.css", 170 "deviceModeView.css",
169 "inspectedPagePlaceholder.css", 171 "inspectedPagePlaceholder.css",
170 "mediaQueryInspector.css", 172 "mediaQueryInspector.css",
171 "sensors.css" 173 "sensors.css"
172 ] 174 ]
173 } 175 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698