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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/components/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": "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": "@Components.DOMPresentationUtils.MarkerDecorator",
13 "factoryName": "WebInspector.DOMPresentationUtils.GenericDecorator", 13 "factoryName": "Components.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 }, 17 },
18 { 18 {
19 "type": "setting", 19 "type": "setting",
20 "settingName": "customNetworkConditions", 20 "settingName": "customNetworkConditions",
21 "settingType": "array", 21 "settingType": "array",
22 "defaultValue": [] 22 "defaultValue": []
23 }, 23 },
24 { 24 {
25 "type": "@WebInspector.ActionDelegate", 25 "type": "@UI.ActionDelegate",
26 "actionId": "components.network-offline", 26 "actionId": "components.network-offline",
27 "category": "Network", 27 "category": "Network",
28 "title": "Go offline", 28 "title": "Go offline",
29 "className": "WebInspector.NetworkConditionsActionDelegate", 29 "className": "Components.NetworkConditionsActionDelegate",
30 "tags": "device" 30 "tags": "device"
31 }, 31 },
32 { 32 {
33 "type": "@WebInspector.ActionDelegate", 33 "type": "@UI.ActionDelegate",
34 "actionId": "components.network-online", 34 "actionId": "components.network-online",
35 "category": "Network", 35 "category": "Network",
36 "title": "Go online", 36 "title": "Go online",
37 "className": "WebInspector.NetworkConditionsActionDelegate", 37 "className": "Components.NetworkConditionsActionDelegate",
38 "tags": "device" 38 "tags": "device"
39 }, 39 },
40 { 40 {
41 "type": "view", 41 "type": "view",
42 "location": "settings-view", 42 "location": "settings-view",
43 "id": "network-conditions", 43 "id": "network-conditions",
44 "title": "Throttling", 44 "title": "Throttling",
45 "order": "35", 45 "order": "35",
46 "className": "WebInspector.NetworkConditionsSettingsTab", 46 "className": "Components.NetworkConditionsSettingsTab",
47 "settings": [ 47 "settings": [
48 "customNetworkConditions" 48 "customNetworkConditions"
49 ] 49 ]
50 }, 50 },
51 { 51 {
52 "type": "@WebInspector.ActionDelegate", 52 "type": "@UI.ActionDelegate",
53 "category": "Mobile", 53 "category": "Mobile",
54 "actionId": "components.request-app-banner", 54 "actionId": "components.request-app-banner",
55 "className": "WebInspector.RequestAppBannerActionDelegate", 55 "className": "Components.RequestAppBannerActionDelegate",
56 "title": "Add to homescreen" 56 "title": "Add to homescreen"
57 } 57 }
58 ], 58 ],
59 "dependencies": [ 59 "dependencies": [
60 "bindings", 60 "bindings",
61 "platform", 61 "platform",
62 "ui" 62 "ui"
63 ], 63 ],
64 "scripts": [ 64 "scripts": [
65 "BreakpointsSidebarPaneBase.js", 65 "BreakpointsSidebarPaneBase.js",
(...skipping 21 matching lines...) Expand all
87 "breakpointsList.css", 87 "breakpointsList.css",
88 "customPreviewSection.css", 88 "customPreviewSection.css",
89 "eventListenersView.css", 89 "eventListenersView.css",
90 "domUtils.css", 90 "domUtils.css",
91 "networkConditionsSettingsTab.css", 91 "networkConditionsSettingsTab.css",
92 "objectPropertiesSection.css", 92 "objectPropertiesSection.css",
93 "objectValue.css", 93 "objectValue.css",
94 "spectrum.css" 94 "spectrum.css"
95 ] 95 ]
96 } 96 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698