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

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

Issue 2915883002: DevTools: prepare to unify Network and CPU throttling UI (Closed)
Patch Set: gs Created 3 years, 6 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 }, 9 },
10 { 10 {
11 "type": "@UI.ContextMenu.Provider", 11 "type": "@UI.ContextMenu.Provider",
12 "contextTypes": [ "SDK.DOMNode" ], 12 "contextTypes": [
13 "SDK.DOMNode"
14 ],
13 "className": "Components.DOMBreakpointsSidebarPane.ContextMenuProvid er" 15 "className": "Components.DOMBreakpointsSidebarPane.ContextMenuProvid er"
14 }, 16 },
15 { 17 {
16 "type": "@UI.ContextFlavorListener", 18 "type": "@UI.ContextFlavorListener",
17 "contextTypes": [ 19 "contextTypes": [
18 "SDK.DebuggerPausedDetails" 20 "SDK.DebuggerPausedDetails"
19 ], 21 ],
20 "className": "Components.DOMBreakpointsSidebarPane" 22 "className": "Components.DOMBreakpointsSidebarPane"
21 }, 23 },
22 { 24 {
(...skipping 16 matching lines...) Expand all
39 } 41 }
40 ], 42 ],
41 "dependencies": [ 43 "dependencies": [
42 "bindings", 44 "bindings",
43 "platform", 45 "platform",
44 "ui", 46 "ui",
45 "network_log" 47 "network_log"
46 ], 48 ],
47 "scripts": [ 49 "scripts": [
48 "BreakpointsSidebarPaneBase.js", 50 "BreakpointsSidebarPaneBase.js",
49 "CPUThrottlingManager.js",
50 "DataSaverInfobar.js", 51 "DataSaverInfobar.js",
51 "DOMBreakpointsSidebarPane.js", 52 "DOMBreakpointsSidebarPane.js",
52 "DOMPresentationUtils.js", 53 "DOMPresentationUtils.js",
53 "DockController.js", 54 "DockController.js",
54 "Linkifier.js", 55 "Linkifier.js",
55 "Reload.js" 56 "Reload.js"
56 ], 57 ],
57 "resources": [ 58 "resources": [
58 "breakpointsList.css", 59 "breakpointsList.css",
59 "domUtils.css", 60 "domUtils.css",
60 "imagePreview.css" 61 "imagePreview.css"
61 ] 62 ]
62 } 63 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698