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

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

Issue 1273313002: DevTools: introduce dom markers, decorate hidden, forced state and breakpoint elements using marker… (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 4 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 "experiment": "customObjectFormatters" 10 "experiment": "customObjectFormatters"
11 },
12 {
13 "type": "@WebInspector.DOMPresentationUtils.MarkerDecorator",
14 "className": "WebInspector.DOMBreakpointsSidebarPane.MarkerDecorator ",
15 "marker": "breakpoint"
dgozman 2015/08/07 23:35:05 I'd name markers like "breakpoint-marker" just for
pfeldman 2015/08/10 21:25:16 Done.
11 } 16 }
12 ], 17 ],
13 "dependencies": [ 18 "dependencies": [
14 "bindings", 19 "bindings",
15 "platform", 20 "platform",
16 "ui" 21 "ui"
17 ], 22 ],
18 "scripts": [ 23 "scripts": [
19 "BreakpointsSidebarPaneBase.js", 24 "BreakpointsSidebarPaneBase.js",
20 "CustomPreviewSection.js", 25 "CustomPreviewSection.js",
(...skipping 18 matching lines...) Expand all
39 "resources": [ 44 "resources": [
40 "breakpointsList.css", 45 "breakpointsList.css",
41 "customPreviewSection.css", 46 "customPreviewSection.css",
42 "eventListenersView.css", 47 "eventListenersView.css",
43 "domUtils.css", 48 "domUtils.css",
44 "inspectorViewTabbedPane.css", 49 "inspectorViewTabbedPane.css",
45 "objectPropertiesSection.css", 50 "objectPropertiesSection.css",
46 "objectValue.css" 51 "objectValue.css"
47 ] 52 ]
48 } 53 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698