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

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

Issue 1582093002: [DevTools] Turn NetworkConditionsSettingsTab into web component, move to network module. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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": "setting", 4 "type": "setting",
5 "category": "Console", 5 "category": "Console",
6 "title": "Enable custom formatters", 6 "title": "Enable custom formatters",
7 "settingName": "customFormatters", 7 "settingName": "customFormatters",
8 "settingType": "boolean", 8 "settingType": "boolean",
9 "defaultValue": false 9 "defaultValue": false
10 }, 10 },
11 { 11 {
12 "type": "@WebInspector.DOMPresentationUtils.MarkerDecorator", 12 "type": "@WebInspector.DOMPresentationUtils.MarkerDecorator",
13 "className": "WebInspector.DOMPresentationUtils.GenericDecorator", 13 "className": "WebInspector.DOMPresentationUtils.GenericDecorator",
14 "marker": "breakpoint-marker", 14 "marker": "breakpoint-marker",
15 "title": "DOM Breakpoint", 15 "title": "DOM Breakpoint",
16 "color": "rgb(105, 140, 254)" 16 "color": "rgb(105, 140, 254)"
17 },
18 {
19 "type": "setting",
20 "settingName": "networkConditionsCustomProfiles",
21 "settingType": "array",
22 "defaultValue": []
23 },
24 {
25 "type": "settings-view",
26 "name": "network-conditions",
27 "title": "Throttling",
28 "order": "35",
29 "className": "WebInspector.NetworkConditionsSettingsTab",
30 "settings": [
31 "networkConditionsCustomProfiles"
32 ]
33 } 17 }
34 ], 18 ],
35 "dependencies": [ 19 "dependencies": [
36 "bindings", 20 "bindings",
37 "platform", 21 "platform",
38 "ui" 22 "ui"
39 ], 23 ],
40 "scripts": [ 24 "scripts": [
41 "BreakpointsSidebarPaneBase.js", 25 "BreakpointsSidebarPaneBase.js",
42 "CustomPreviewSection.js", 26 "CustomPreviewSection.js",
43 "DataSaverInfobar.js", 27 "DataSaverInfobar.js",
44 "DebuggerPresentationUtils.js", 28 "DebuggerPresentationUtils.js",
45 "DOMBreakpointsSidebarPane.js", 29 "DOMBreakpointsSidebarPane.js",
46 "DOMPresentationUtils.js", 30 "DOMPresentationUtils.js",
47 "DockController.js", 31 "DockController.js",
48 "Drawer.js", 32 "Drawer.js",
49 "ExecutionContextSelector.js", 33 "ExecutionContextSelector.js",
50 "ExecutionContextModel.js", 34 "ExecutionContextModel.js",
51 "HandlerRegistry.js", 35 "HandlerRegistry.js",
52 "InspectorView.js", 36 "InspectorView.js",
53 "Linkifier.js", 37 "Linkifier.js",
54 "NetworkConditionsSelector.js",
55 "ObjectPopoverHelper.js", 38 "ObjectPopoverHelper.js",
56 "ObjectPropertiesSection.js", 39 "ObjectPropertiesSection.js",
57 "RemoteObjectPreviewFormatter.js", 40 "RemoteObjectPreviewFormatter.js",
58 "ShortcutsScreen.js", 41 "ShortcutsScreen.js",
59 "EventListenersUtils.js", 42 "EventListenersUtils.js",
60 "EventListenersView.js", 43 "EventListenersView.js",
61 "Reload.js" 44 "Reload.js"
62 ], 45 ],
63 "resources": [ 46 "resources": [
64 "breakpointsList.css", 47 "breakpointsList.css",
65 "customPreviewSection.css", 48 "customPreviewSection.css",
66 "eventListenersView.css", 49 "eventListenersView.css",
67 "domUtils.css", 50 "domUtils.css",
68 "inspectorViewTabbedPane.css", 51 "inspectorViewTabbedPane.css",
69 "networkConditionsSettingsTab.css",
70 "objectPropertiesSection.css", 52 "objectPropertiesSection.css",
71 "objectValue.css" 53 "objectValue.css"
72 ] 54 ]
73 } 55 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698