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

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

Issue 2493373002: DevTools: rename WebInspector into modules. (Closed)
Patch Set: for bots Created 4 years, 1 month 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": "@Common.AppProvider",
5 "condition": "can_dock", 5 "condition": "can_dock",
6 "className": "WebInspector.AdvancedAppProvider", 6 "className": "Emulation.AdvancedAppProvider",
7 "order": 0 7 "order": 0
8 }, 8 },
9 { 9 {
10 "type": "@WebInspector.ActionDelegate", 10 "type": "@UI.ActionDelegate",
11 "category": "Mobile", 11 "category": "Mobile",
12 "actionId": "emulation.toggle-device-mode", 12 "actionId": "emulation.toggle-device-mode",
13 "className": "WebInspector.DeviceModeWrapper.ActionDelegate", 13 "className": "Emulation.DeviceModeWrapper.ActionDelegate",
14 "condition": "can_dock", 14 "condition": "can_dock",
15 "title": "Toggle device toolbar", 15 "title": "Toggle device toolbar",
16 "iconClass": "largeicon-phone", 16 "iconClass": "largeicon-phone",
17 "bindings": [ 17 "bindings": [
18 { 18 {
19 "platform": "windows,linux", 19 "platform": "windows,linux",
20 "shortcut": "Shift+Ctrl+M" 20 "shortcut": "Shift+Ctrl+M"
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": "@UI.ActionDelegate",
30 "actionId": "emulation.capture-screenshot", 30 "actionId": "emulation.capture-screenshot",
31 "category": "Mobile", 31 "category": "Mobile",
32 "className": "WebInspector.DeviceModeWrapper.ActionDelegate", 32 "className": "Emulation.DeviceModeWrapper.ActionDelegate",
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": "@WebInspector.ToolbarItem.Provider", 43 "type": "@UI.ToolbarItem.Provider",
44 "actionId": "emulation.toggle-device-mode", 44 "actionId": "emulation.toggle-device-mode",
45 "condition": "can_dock", 45 "condition": "can_dock",
46 "location": "main-toolbar-left", 46 "location": "main-toolbar-left",
47 "order": 1 47 "order": 1
48 }, 48 },
49 { 49 {
50 "type": "setting", 50 "type": "setting",
51 "category": "Mobile", 51 "category": "Mobile",
52 "settingName": "showMediaQueryInspector", 52 "settingName": "showMediaQueryInspector",
53 "settingType": "boolean", 53 "settingType": "boolean",
(...skipping 27 matching lines...) Expand all
81 {"value": false, "title": "Hide device frame"} 81 {"value": false, "title": "Hide device frame"}
82 ], 82 ],
83 "tags": "device" 83 "tags": "device"
84 }, 84 },
85 { 85 {
86 "type": "view", 86 "type": "view",
87 "location": "settings-view", 87 "location": "settings-view",
88 "id": "devices", 88 "id": "devices",
89 "title": "Devices", 89 "title": "Devices",
90 "order": "30", 90 "order": "30",
91 "className": "WebInspector.DevicesSettingsTab", 91 "className": "Emulation.DevicesSettingsTab",
92 "settings": [ 92 "settings": [
93 "standardEmulatedDeviceList", 93 "standardEmulatedDeviceList",
94 "customEmulatedDeviceList" 94 "customEmulatedDeviceList"
95 ] 95 ]
96 }, 96 },
97 { 97 {
98 "type": "@WebInspector.ActionDelegate", 98 "type": "@UI.ActionDelegate",
99 "actionId": "emulation.show-sensors", 99 "actionId": "emulation.show-sensors",
100 "title": "Sensors", 100 "title": "Sensors",
101 "className": "WebInspector.SensorsView.ShowActionDelegate" 101 "className": "Emulation.SensorsView.ShowActionDelegate"
102 }, 102 },
103 { 103 {
104 "type": "view", 104 "type": "view",
105 "location": "drawer-view", 105 "location": "drawer-view",
106 "id": "sensors", 106 "id": "sensors",
107 "title": "Sensors", 107 "title": "Sensors",
108 "persistence": "closeable", 108 "persistence": "closeable",
109 "order": 100, 109 "order": 100,
110 "className": "WebInspector.SensorsView", 110 "className": "Emulation.SensorsView",
111 "tags": "geolocation, accelerometer, device orientation" 111 "tags": "geolocation, accelerometer, device orientation"
112 } 112 }
113 ], 113 ],
114 "dependencies": [ 114 "dependencies": [
115 "bindings", 115 "bindings",
116 "components", 116 "components",
117 "platform", 117 "platform",
118 "ui" 118 "ui"
119 ], 119 ],
120 "scripts": [ 120 "scripts": [
(...skipping 13 matching lines...) Expand all
134 ], 134 ],
135 "resources": [ 135 "resources": [
136 "devicesSettingsTab.css", 136 "devicesSettingsTab.css",
137 "deviceModeToolbar.css", 137 "deviceModeToolbar.css",
138 "deviceModeView.css", 138 "deviceModeView.css",
139 "inspectedPagePlaceholder.css", 139 "inspectedPagePlaceholder.css",
140 "mediaQueryInspector.css", 140 "mediaQueryInspector.css",
141 "sensors.css" 141 "sensors.css"
142 ] 142 ]
143 } 143 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698