Chromium Code Reviews| OLD | NEW |
|---|---|
| 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" |
|
dgozman
2016/07/09 01:12:15
Let's add tags: usb, android, mobile
pfeldman
2016/07/09 01:37:03
Done.
| |
| 15 } | 10 } |
| 16 ], | 11 ], |
| 17 "dependencies": ["platform", "ui", "host", "components"], | 12 "dependencies": ["platform", "ui", "host", "components"], |
| 18 "scripts": [ | 13 "scripts": [ |
| 19 "DevicesView.js", | 14 "DevicesView.js" |
| 20 "DevicesDialog.js" | |
| 21 ], | 15 ], |
| 22 "resources": [ | 16 "resources": [ |
| 23 "devicesView.css" | 17 "devicesView.css" |
| 24 ] | 18 ] |
| 25 } | 19 } |
| OLD | NEW |