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

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

Issue 1569893003: Add "Request app banner" context menu in DevTools (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: incorporated dfalcantara's comment Created 4 years, 11 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": "drawer-view", 4 "type": "drawer-view",
5 "name": "emulation", 5 "name": "emulation",
6 "title": "Emulation", 6 "title": "Emulation",
7 "experiment": "!deviceMode", 7 "experiment": "!deviceMode",
8 "order": 10, 8 "order": 10,
9 "persistence": "closeable", 9 "persistence": "closeable",
10 "className": "WebInspector.OverridesView" 10 "className": "WebInspector.OverridesView"
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 "order": 10, 96 "order": 10,
97 "actionId": "emulation.toggle-device-toolbar" 97 "actionId": "emulation.toggle-device-toolbar"
98 }, 98 },
99 { 99 {
100 "type": "drawer-view", 100 "type": "drawer-view",
101 "name": "sensors", 101 "name": "sensors",
102 "title": "Sensors", 102 "title": "Sensors",
103 "persistence": "closeable", 103 "persistence": "closeable",
104 "order": 100, 104 "order": 100,
105 "className": "WebInspector.SensorsView" 105 "className": "WebInspector.SensorsView"
106 },
107 {
108 "type": "@WebInspector.ActionDelegate",
109 "actionId": "emulation.request-app-banner",
110 "className": "WebInspector.DeviceModeView.ActionDelegate",
111 "title": "Request app banner"
112 },
113 {
114 "type": "context-menu-item",
pfeldman 2016/01/20 04:30:17 You can also conditionally put it into mainMenu/to
horo 2016/01/20 11:01:41 WebInspector.ScreencastApp doesn't create WebInspe
115 "location": "deviceModeMenu/tools",
116 "order": 10,
117 "actionId": "emulation.request-app-banner"
106 } 118 }
107 ], 119 ],
108 "dependencies": [ 120 "dependencies": [
109 "bindings", 121 "bindings",
110 "components", 122 "components",
111 "platform", 123 "platform",
112 "ui" 124 "ui"
113 ], 125 ],
114 "scripts": [ 126 "scripts": [
115 "OverridesSupport.js", 127 "OverridesSupport.js",
(...skipping 12 matching lines...) Expand all
128 "resources": [ 140 "resources": [
129 "devicesSettingsTab.css", 141 "devicesSettingsTab.css",
130 "deviceModeToolbar.css", 142 "deviceModeToolbar.css",
131 "deviceModeView.css", 143 "deviceModeView.css",
132 "mediaQueryInspector.css", 144 "mediaQueryInspector.css",
133 "responsiveDesignView.css", 145 "responsiveDesignView.css",
134 "overrides.css", 146 "overrides.css",
135 "sensors.css" 147 "sensors.css"
136 ] 148 ]
137 } 149 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698