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

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

Issue 1836943002: DevTools: request app banner from DevTools without #enable-add-to-shelf flag while emulating. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 { 82 {
83 "type": "drawer-view", 83 "type": "drawer-view",
84 "name": "sensors", 84 "name": "sensors",
85 "title": "Sensors", 85 "title": "Sensors",
86 "persistence": "closeable", 86 "persistence": "closeable",
87 "order": 100, 87 "order": 100,
88 "className": "WebInspector.SensorsView", 88 "className": "WebInspector.SensorsView",
89 "tags": "geolocation, accelerometer, device orientation" 89 "tags": "geolocation, accelerometer, device orientation"
90 }, 90 },
91 { 91 {
92 "type": "@WebInspector.ActionDelegate",
93 "actionId": "emulation.request-app-banner",
94 "className": "WebInspector.DeviceModeWrapper.ActionDelegate",
95 "title": "Request app banner\u2026"
96 },
97 {
98 "type": "context-menu-item", 92 "type": "context-menu-item",
99 "location": "deviceModeMenu/tools", 93 "location": "deviceModeMenu/tools",
100 "experiment": "appBanner",
101 "order": 10, 94 "order": 10,
102 "actionId": "emulation.request-app-banner" 95 "actionId": "components.request-app-banner"
103 } 96 }
104 ], 97 ],
105 "dependencies": [ 98 "dependencies": [
106 "bindings", 99 "bindings",
107 "components", 100 "components",
108 "platform", 101 "platform",
109 "ui" 102 "ui"
110 ], 103 ],
111 "scripts": [ 104 "scripts": [
112 "AdvancedApp.js", 105 "AdvancedApp.js",
(...skipping 11 matching lines...) Expand all
124 "DeviceModeWrapper.js" 117 "DeviceModeWrapper.js"
125 ], 118 ],
126 "resources": [ 119 "resources": [
127 "devicesSettingsTab.css", 120 "devicesSettingsTab.css",
128 "deviceModeToolbar.css", 121 "deviceModeToolbar.css",
129 "deviceModeView.css", 122 "deviceModeView.css",
130 "mediaQueryInspector.css", 123 "mediaQueryInspector.css",
131 "sensors.css" 124 "sensors.css"
132 ] 125 ]
133 } 126 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698