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

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

Issue 1972213003: [DevTools] More UX fixes in Device Mode. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/emulation/DeviceModeView.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 10 matching lines...) Expand all
21 }, 21 },
22 { 22 {
23 "platform": "mac", 23 "platform": "mac",
24 "shortcut": "Shift+Meta+M" 24 "shortcut": "Shift+Meta+M"
25 } 25 }
26 ] 26 ]
27 }, 27 },
28 { 28 {
29 "type": "@WebInspector.ActionDelegate", 29 "type": "@WebInspector.ActionDelegate",
30 "actionId": "emulation.capture-screenshot", 30 "actionId": "emulation.capture-screenshot",
31 "category": "Mobile",
31 "className": "WebInspector.DeviceModeWrapper.ActionDelegate", 32 "className": "WebInspector.DeviceModeWrapper.ActionDelegate",
32 "title": "Capture screenshot" 33 "title": "Capture screenshot",
34 "tags": "device"
33 }, 35 },
34 { 36 {
35 "type": "context-menu-item", 37 "type": "context-menu-item",
36 "location": "deviceModeMenu/tools", 38 "location": "deviceModeMenu/tools",
37 "order": 12, 39 "order": 12,
38 "actionId": "emulation.capture-screenshot" 40 "actionId": "emulation.capture-screenshot"
39 }, 41 },
40 { 42 {
41 "type": "@WebInspector.ToolbarItem.Provider", 43 "type": "@WebInspector.ToolbarItem.Provider",
42 "actionId": "emulation.toggle-device-mode", 44 "actionId": "emulation.toggle-device-mode",
(...skipping 19 matching lines...) Expand all
62 "settingName": "emulation.showRulers", 64 "settingName": "emulation.showRulers",
63 "settingType": "boolean", 65 "settingType": "boolean",
64 "defaultValue": false, 66 "defaultValue": false,
65 "options": [ 67 "options": [
66 {"value": true, "title": "Show rulers"}, 68 {"value": true, "title": "Show rulers"},
67 {"value": false, "title": "Hide rulers"} 69 {"value": false, "title": "Hide rulers"}
68 ], 70 ],
69 "tags": "device" 71 "tags": "device"
70 }, 72 },
71 { 73 {
74 "type": "setting",
75 "category": "Mobile",
76 "settingName": "emulation.showDeviceOutline",
77 "settingType": "boolean",
78 "defaultValue": false,
79 "options": [
80 {"value": true, "title": "Show device frame"},
81 {"value": false, "title": "Hide device frame"}
82 ],
83 "tags": "device"
84 },
85 {
72 "type": "settings-view", 86 "type": "settings-view",
73 "name": "devices", 87 "name": "devices",
74 "title": "Devices", 88 "title": "Devices",
75 "order": "30", 89 "order": "30",
76 "className": "WebInspector.DevicesSettingsTab", 90 "className": "WebInspector.DevicesSettingsTab",
77 "settings": [ 91 "settings": [
78 "standardEmulatedDeviceList", 92 "standardEmulatedDeviceList",
79 "customEmulatedDeviceList" 93 "customEmulatedDeviceList"
80 ] 94 ]
81 }, 95 },
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 "DeviceModeWrapper.js" 143 "DeviceModeWrapper.js"
130 ], 144 ],
131 "resources": [ 145 "resources": [
132 "devicesSettingsTab.css", 146 "devicesSettingsTab.css",
133 "deviceModeToolbar.css", 147 "deviceModeToolbar.css",
134 "deviceModeView.css", 148 "deviceModeView.css",
135 "mediaQueryInspector.css", 149 "mediaQueryInspector.css",
136 "sensors.css" 150 "sensors.css"
137 ] 151 ]
138 } 152 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/emulation/DeviceModeView.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698