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

Unified Diff: third_party/WebKit/Source/devtools/front_end/network_conditions/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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/devtools/front_end/network_conditions/module.json
diff --git a/third_party/WebKit/Source/devtools/front_end/components/module.json b/third_party/WebKit/Source/devtools/front_end/network_conditions/module.json
similarity index 39%
copy from third_party/WebKit/Source/devtools/front_end/components/module.json
copy to third_party/WebKit/Source/devtools/front_end/network_conditions/module.json
index 23882e4b61f70b6dc18d65f0409df1e5d2286124..2fcea456e8abdd1ca5479c798f36fa69b34b2c00 100644
--- a/third_party/WebKit/Source/devtools/front_end/components/module.json
+++ b/third_party/WebKit/Source/devtools/front_end/network_conditions/module.json
@@ -1,13 +1,6 @@
{
"extensions": [
{
- "type": "@Components.DOMPresentationUtils.MarkerDecorator",
- "factoryName": "Components.DOMPresentationUtils.GenericDecorator",
- "marker": "breakpoint-marker",
- "title": "DOM Breakpoint",
- "color": "rgb(105, 140, 254)"
- },
- {
"type": "setting",
"settingName": "customNetworkConditions",
"settingType": "array",
@@ -15,18 +8,18 @@
},
{
"type": "@UI.ActionDelegate",
- "actionId": "components.network-offline",
+ "actionId": "network-conditions.network-offline",
"category": "Network",
"title": "Go offline",
- "className": "Components.NetworkConditionsActionDelegate",
+ "className": "NetworkConditions.NetworkConditionsActionDelegate",
"tags": "device"
},
{
"type": "@UI.ActionDelegate",
- "actionId": "components.network-online",
+ "actionId": "network-conditions.network-online",
"category": "Network",
"title": "Go online",
- "className": "Components.NetworkConditionsActionDelegate",
+ "className": "NetworkConditions.NetworkConditionsActionDelegate",
"tags": "device"
},
{
@@ -35,42 +28,24 @@
"id": "network-conditions",
"title": "Throttling",
"order": "35",
- "className": "Components.NetworkConditionsSettingsTab",
+ "className": "NetworkConditions.NetworkConditionsSettingsTab",
"settings": [
"customNetworkConditions"
]
}
],
"dependencies": [
- "bindings",
- "platform",
- "ui"
+ "common",
+ "sdk",
+ "ui",
+ "protocol"
],
"scripts": [
- "BreakpointsSidebarPaneBase.js",
- "CustomPreviewComponent.js",
- "CPUThrottlingManager.js",
- "DataSaverInfobar.js",
- "DOMBreakpointsSidebarPane.js",
- "DOMPresentationUtils.js",
- "DockController.js",
- "JavaScriptAutocomplete.js",
- "Linkifier.js",
"NetworkConditionsSelector.js",
- "ObjectPopoverHelper.js",
- "ObjectPropertiesSection.js",
- "RemoteObjectPreviewFormatter.js",
- "EventListenersUtils.js",
- "EventListenersView.js",
- "Reload.js"
+ "NetworkConditionsSettingsTab.js",
+ "NetworkPriorities.js"
],
"resources": [
- "breakpointsList.css",
- "customPreviewComponent.css",
- "eventListenersView.css",
- "domUtils.css",
- "networkConditionsSettingsTab.css",
- "objectPropertiesSection.css",
- "objectValue.css"
+ "networkConditionsSettingsTab.css"
]
}

Powered by Google App Engine
This is Rietveld 408576698