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

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

Issue 2668413003: DevTools: extract NetworkConditionsSelector into its own module (Closed)
Patch Set: rebaseline 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
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",
54 "defaultValue": false, 54 "defaultValue": false,
55 "options": [ 55 "options": [
56 {"value": true, "title": "Show media queries"}, 56 {
57 {"value": false, "title": "Hide media queries"} 57 "value": true,
58 "title": "Show media queries"
59 },
60 {
61 "value": false,
62 "title": "Hide media queries"
63 }
58 ], 64 ],
59 "tags": "device" 65 "tags": "device"
60 }, 66 },
61 { 67 {
62 "type": "setting", 68 "type": "setting",
63 "category": "Mobile", 69 "category": "Mobile",
64 "settingName": "emulation.showRulers", 70 "settingName": "emulation.showRulers",
65 "settingType": "boolean", 71 "settingType": "boolean",
66 "defaultValue": false, 72 "defaultValue": false,
67 "options": [ 73 "options": [
68 {"value": true, "title": "Show rulers"}, 74 {
69 {"value": false, "title": "Hide rulers"} 75 "value": true,
76 "title": "Show rulers"
77 },
78 {
79 "value": false,
80 "title": "Hide rulers"
81 }
70 ], 82 ],
71 "tags": "device" 83 "tags": "device"
72 }, 84 },
73 { 85 {
74 "type": "setting", 86 "type": "setting",
75 "category": "Mobile", 87 "category": "Mobile",
76 "settingName": "emulation.showDeviceOutline", 88 "settingName": "emulation.showDeviceOutline",
77 "settingType": "boolean", 89 "settingType": "boolean",
78 "defaultValue": false, 90 "defaultValue": false,
79 "options": [ 91 "options": [
80 {"value": true, "title": "Show device frame"}, 92 {
81 {"value": false, "title": "Hide device frame"} 93 "value": true,
94 "title": "Show device frame"
95 },
96 {
97 "value": false,
98 "title": "Hide device frame"
99 }
82 ], 100 ],
83 "tags": "device" 101 "tags": "device"
84 }, 102 },
85 { 103 {
86 "type": "view", 104 "type": "view",
87 "location": "settings-view", 105 "location": "settings-view",
88 "id": "devices", 106 "id": "devices",
89 "title": "Devices", 107 "title": "Devices",
90 "order": "30", 108 "order": "30",
91 "className": "Emulation.DevicesSettingsTab", 109 "className": "Emulation.DevicesSettingsTab",
(...skipping 16 matching lines...) Expand all
108 "persistence": "closeable", 126 "persistence": "closeable",
109 "order": 100, 127 "order": 100,
110 "className": "Emulation.SensorsView", 128 "className": "Emulation.SensorsView",
111 "tags": "geolocation, accelerometer, device orientation" 129 "tags": "geolocation, accelerometer, device orientation"
112 } 130 }
113 ], 131 ],
114 "dependencies": [ 132 "dependencies": [
115 "bindings", 133 "bindings",
116 "components", 134 "components",
117 "platform", 135 "platform",
118 "ui" 136 "ui",
137 "network_conditions"
119 ], 138 ],
120 "scripts": [ 139 "scripts": [
121 "AdvancedApp.js", 140 "AdvancedApp.js",
122 "EmulatedDevices.js", 141 "EmulatedDevices.js",
123 "DevicesSettingsTab.js", 142 "DevicesSettingsTab.js",
124 "DeviceOrientation.js", 143 "DeviceOrientation.js",
125 "Geolocation.js", 144 "Geolocation.js",
126 "InspectedPagePlaceholder.js", 145 "InspectedPagePlaceholder.js",
127 "MediaQueryInspector.js", 146 "MediaQueryInspector.js",
128 "SensorsView.js", 147 "SensorsView.js",
129 "TouchModel.js", 148 "TouchModel.js",
130 "DeviceModeModel.js", 149 "DeviceModeModel.js",
131 "DeviceModeToolbar.js", 150 "DeviceModeToolbar.js",
132 "DeviceModeView.js", 151 "DeviceModeView.js",
133 "DeviceModeWrapper.js" 152 "DeviceModeWrapper.js"
134 ], 153 ],
135 "resources": [ 154 "resources": [
136 "devicesSettingsTab.css", 155 "devicesSettingsTab.css",
137 "deviceModeToolbar.css", 156 "deviceModeToolbar.css",
138 "deviceModeView.css", 157 "deviceModeView.css",
139 "inspectedPagePlaceholder.css", 158 "inspectedPagePlaceholder.css",
140 "mediaQueryInspector.css", 159 "mediaQueryInspector.css",
141 "sensors.css" 160 "sensors.css"
142 ] 161 ]
143 } 162 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698