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

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

Issue 2702113006: [DevTools] Full-size screenshots in device mode. (Closed)
Patch Set: Created 3 years, 10 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 22 matching lines...) Expand all
33 "title": "Capture screenshot", 33 "title": "Capture screenshot",
34 "tags": "device" 34 "tags": "device"
35 }, 35 },
36 { 36 {
37 "type": "context-menu-item", 37 "type": "context-menu-item",
38 "location": "deviceModeMenu/tools", 38 "location": "deviceModeMenu/tools",
39 "order": 12, 39 "order": 12,
40 "actionId": "emulation.capture-screenshot" 40 "actionId": "emulation.capture-screenshot"
41 }, 41 },
42 { 42 {
43 "type": "@UI.ActionDelegate",
44 "actionId": "emulation.capture-full-height-screenshot",
45 "category": "Mobile",
46 "className": "Emulation.DeviceModeWrapper.ActionDelegate",
47 "title": "Capture full size screenshot",
48 "tags": "device"
49 },
50 {
51 "type": "context-menu-item",
52 "location": "deviceModeMenu/tools",
53 "order": 13,
54 "actionId": "emulation.capture-full-height-screenshot"
55 },
56 {
43 "type": "@UI.ToolbarItem.Provider", 57 "type": "@UI.ToolbarItem.Provider",
44 "actionId": "emulation.toggle-device-mode", 58 "actionId": "emulation.toggle-device-mode",
45 "condition": "can_dock", 59 "condition": "can_dock",
46 "location": "main-toolbar-left", 60 "location": "main-toolbar-left",
47 "order": 1 61 "order": 1
48 }, 62 },
49 { 63 {
50 "type": "setting", 64 "type": "setting",
51 "category": "Mobile", 65 "category": "Mobile",
52 "settingName": "showMediaQueryInspector", 66 "settingName": "showMediaQueryInspector",
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 ], 167 ],
154 "resources": [ 168 "resources": [
155 "devicesSettingsTab.css", 169 "devicesSettingsTab.css",
156 "deviceModeToolbar.css", 170 "deviceModeToolbar.css",
157 "deviceModeView.css", 171 "deviceModeView.css",
158 "inspectedPagePlaceholder.css", 172 "inspectedPagePlaceholder.css",
159 "mediaQueryInspector.css", 173 "mediaQueryInspector.css",
160 "sensors.css" 174 "sensors.css"
161 ] 175 ]
162 } 176 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698