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

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

Issue 2137763002: DevTools: automatically populate 'More tools' submenu with the drawer views. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: for landing 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.ActionDelegate", 4 "type": "drawer-view",
5 "category": "Mobile", 5 "name": "remote-devices",
6 "actionId": "devices.dialog.show", 6 "title": "Remote devices",
7 "className": "WebInspector.DevicesDialog.ActionDelegate", 7 "persistence": "closeable",
8 "title": "Inspect devices\u2026"
9 },
10 {
11 "type": "context-menu-item",
12 "location": "mainMenu/tools/open",
13 "order": 50, 8 "order": 50,
14 "actionId": "devices.dialog.show" 9 "className": "WebInspector.DevicesView",
10 "tags": "usb, android, mobile"
15 } 11 }
16 ], 12 ],
17 "dependencies": ["platform", "ui", "host", "components"], 13 "dependencies": ["platform", "ui", "host", "components"],
18 "scripts": [ 14 "scripts": [
19 "DevicesView.js", 15 "DevicesView.js"
20 "DevicesDialog.js"
21 ], 16 ],
22 "resources": [ 17 "resources": [
23 "devicesView.css" 18 "devicesView.css"
24 ] 19 ]
25 } 20 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698