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

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

Issue 1292673002: [DevTools] Group options in network presets select. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 4 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 | Annotate | Revision Log
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 "order": "10", 7 "order": "10",
8 "className": "WebInspector.OverridesView" 8 "className": "WebInspector.OverridesView"
9 }, 9 },
10 { 10 {
(...skipping 22 matching lines...) Expand all
33 { 33 {
34 "type": "@WebInspector.Revealer", 34 "type": "@WebInspector.Revealer",
35 "contextTypes": ["WebInspector.OverridesSupport"], 35 "contextTypes": ["WebInspector.OverridesSupport"],
36 "className": "WebInspector.OverridesView.Revealer" 36 "className": "WebInspector.OverridesView.Revealer"
37 }, 37 },
38 { 38 {
39 "type": "settings-view", 39 "type": "settings-view",
40 "name": "devices", 40 "name": "devices",
41 "title": "Devices", 41 "title": "Devices",
42 "order": "30", 42 "order": "30",
43 "className": "WebInspector.DevicesSettingsTab" 43 "className": "WebInspector.DevicesSettingsTab",
44 "settings": [
45 "standardEmulatedDeviceList",
46 "customEmulatedDeviceList"
47 ]
44 } 48 }
45 ], 49 ],
46 "dependencies": [ 50 "dependencies": [
47 "bindings", 51 "bindings",
48 "components", 52 "components",
49 "platform", 53 "platform",
50 "ui" 54 "ui"
51 ], 55 ],
52 "scripts": [ 56 "scripts": [
53 "OverridesSupport.js", 57 "OverridesSupport.js",
54 "EmulatedDevices.js", 58 "EmulatedDevices.js",
55 "DevicesSettingsTab.js", 59 "DevicesSettingsTab.js",
56 "DeviceModeButton.js", 60 "DeviceModeButton.js",
57 "OverridesUI.js", 61 "OverridesUI.js",
58 "InspectedPagePlaceholder.js", 62 "InspectedPagePlaceholder.js",
59 "MediaQueryInspector.js", 63 "MediaQueryInspector.js",
60 "ResponsiveDesignView.js", 64 "ResponsiveDesignView.js",
61 "OverridesView.js" 65 "OverridesView.js"
62 ], 66 ],
63 "resources": [ 67 "resources": [
64 "accelerometer.css", 68 "accelerometer.css",
65 "devicesSettingsTab.css", 69 "devicesSettingsTab.css",
66 "responsiveDesignView.css", 70 "responsiveDesignView.css",
67 "overrides.css" 71 "overrides.css"
68 ] 72 ]
69 } 73 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698