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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/components/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": "@Components.DOMPresentationUtils.MarkerDecorator", 4 "type": "@Components.DOMPresentationUtils.MarkerDecorator",
5 "factoryName": "Components.DOMPresentationUtils.GenericDecorator", 5 "factoryName": "Components.DOMPresentationUtils.GenericDecorator",
6 "marker": "breakpoint-marker", 6 "marker": "breakpoint-marker",
7 "title": "DOM Breakpoint", 7 "title": "DOM Breakpoint",
8 "color": "rgb(105, 140, 254)" 8 "color": "rgb(105, 140, 254)"
9 },
10 {
11 "type": "setting",
12 "settingName": "customNetworkConditions",
13 "settingType": "array",
14 "defaultValue": []
15 },
16 {
17 "type": "@UI.ActionDelegate",
18 "actionId": "components.network-offline",
19 "category": "Network",
20 "title": "Go offline",
21 "className": "Components.NetworkConditionsActionDelegate",
22 "tags": "device"
23 },
24 {
25 "type": "@UI.ActionDelegate",
26 "actionId": "components.network-online",
27 "category": "Network",
28 "title": "Go online",
29 "className": "Components.NetworkConditionsActionDelegate",
30 "tags": "device"
31 },
32 {
33 "type": "view",
34 "location": "settings-view",
35 "id": "network-conditions",
36 "title": "Throttling",
37 "order": "35",
38 "className": "Components.NetworkConditionsSettingsTab",
39 "settings": [
40 "customNetworkConditions"
41 ]
42 } 9 }
43 ], 10 ],
44 "dependencies": [ 11 "dependencies": [
45 "bindings", 12 "bindings",
46 "platform", 13 "platform",
47 "ui" 14 "ui"
48 ], 15 ],
49 "scripts": [ 16 "scripts": [
50 "BreakpointsSidebarPaneBase.js", 17 "BreakpointsSidebarPaneBase.js",
51 "CustomPreviewComponent.js", 18 "CustomPreviewComponent.js",
52 "CPUThrottlingManager.js", 19 "CPUThrottlingManager.js",
53 "DataSaverInfobar.js", 20 "DataSaverInfobar.js",
54 "DOMBreakpointsSidebarPane.js", 21 "DOMBreakpointsSidebarPane.js",
55 "DOMPresentationUtils.js", 22 "DOMPresentationUtils.js",
56 "DockController.js", 23 "DockController.js",
57 "JavaScriptAutocomplete.js", 24 "JavaScriptAutocomplete.js",
58 "Linkifier.js", 25 "Linkifier.js",
59 "NetworkConditionsSelector.js",
60 "ObjectPopoverHelper.js", 26 "ObjectPopoverHelper.js",
61 "ObjectPropertiesSection.js", 27 "ObjectPropertiesSection.js",
62 "RemoteObjectPreviewFormatter.js", 28 "RemoteObjectPreviewFormatter.js",
63 "EventListenersUtils.js", 29 "EventListenersUtils.js",
64 "EventListenersView.js", 30 "EventListenersView.js",
65 "Reload.js" 31 "Reload.js"
66 ], 32 ],
67 "resources": [ 33 "resources": [
68 "breakpointsList.css", 34 "breakpointsList.css",
69 "customPreviewComponent.css", 35 "customPreviewComponent.css",
70 "eventListenersView.css", 36 "eventListenersView.css",
71 "domUtils.css", 37 "domUtils.css",
72 "networkConditionsSettingsTab.css",
73 "objectPropertiesSection.css", 38 "objectPropertiesSection.css",
74 "objectValue.css" 39 "objectValue.css"
75 ] 40 ]
76 } 41 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698