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

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

Issue 1149373004: Devtools: Extensible toolbar in SSP (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix test Created 5 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 | Annotate | Revision Log
« no previous file with comments | « Source/devtools/front_end/elements/elementsPanel.css ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 "extensions": [ 2 "extensions": [
3 { 3 {
4 "type": "@WebInspector.PanelFactory", 4 "type": "@WebInspector.PanelFactory",
5 "name": "elements", 5 "name": "elements",
6 "title": "Elements", 6 "title": "Elements",
7 "order": 0, 7 "order": 0,
8 "className": "WebInspector.ElementsPanelFactory" 8 "className": "WebInspector.ElementsPanelFactory"
9 }, 9 },
10 { 10 {
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 "settingType": "boolean", 60 "settingType": "boolean",
61 "defaultValue": false 61 "defaultValue": false
62 }, 62 },
63 { 63 {
64 "type": "setting", 64 "type": "setting",
65 "category": "Elements", 65 "category": "Elements",
66 "title": "Highlight DOM updates", 66 "title": "Highlight DOM updates",
67 "settingName": "highlightDOMUpdates", 67 "settingName": "highlightDOMUpdates",
68 "settingType": "boolean", 68 "settingType": "boolean",
69 "defaultValue": true 69 "defaultValue": true
70 },
71 {
72 "type": "@WebInspector.ToolbarItem.Provider",
73 "className": "WebInspector.StylesSidebarPane.AddNewRuleButtonProvide r",
74 "order": 0,
75 "location": "styles-sidebarpane-toolbar"
76 },
77 {
78 "type": "@WebInspector.ToolbarItem.Provider",
79 "className": "WebInspector.ElementStatePaneWidget.ButtonProvider",
80 "order": 1,
81 "location": "styles-sidebarpane-toolbar"
82 },
83 {
84 "type": "@WebInspector.ToolbarItem.Provider",
85 "className": "WebInspector.AnimationControlPane.ButtonProvider",
86 "order": 2,
87 "location": "styles-sidebarpane-toolbar"
70 } 88 }
71 ], 89 ],
72 "dependencies": [ 90 "dependencies": [
73 "components", 91 "components",
74 "extensions" 92 "extensions"
75 ], 93 ],
76 "scripts": [ 94 "scripts": [
77 "BezierUI.js", 95 "BezierUI.js",
78 "AnimationTimeline.js", 96 "AnimationTimeline.js",
79 "AnimationControlPane.js",
80 "StylesPopoverHelper.js", 97 "StylesPopoverHelper.js",
81 "BezierEditor.js", 98 "BezierEditor.js",
82 "Spectrum.js", 99 "Spectrum.js",
83 "ElementsBreadcrumbs.js", 100 "ElementsBreadcrumbs.js",
84 "ElementsSidebarPane.js", 101 "ElementsSidebarPane.js",
85 "ElementsSidebarView.js", 102 "ElementsSidebarView.js",
86 "ElementsTreeElement.js", 103 "ElementsTreeElement.js",
87 "ElementsTreeOutline.js", 104 "ElementsTreeOutline.js",
88 "SharedSidebarModel.js", 105 "SharedSidebarModel.js",
89 "EventListenersWidget.js", 106 "EventListenersWidget.js",
90 "MetricsSidebarPane.js", 107 "MetricsSidebarPane.js",
91 "PlatformFontsWidget.js", 108 "PlatformFontsWidget.js",
92 "PropertiesWidget.js", 109 "PropertiesWidget.js",
93 "StylesSectionModel.js", 110 "StylesSectionModel.js",
94 "StylesSidebarPane.js", 111 "StylesSidebarPane.js",
95 "ComputedStyleWidget.js", 112 "ComputedStyleWidget.js",
113 "AnimationControlPane.js",
114 "ElementStatePaneWidget.js",
96 "ElementsPanel.js" 115 "ElementsPanel.js"
97 ], 116 ],
98 "resources": [ 117 "resources": [
99 "animationTimeline.css", 118 "animationTimeline.css",
100 "bezierEditor.css", 119 "bezierEditor.css",
101 "breadcrumbs.css", 120 "breadcrumbs.css",
102 "computedStyleSidebarPane.css", 121 "computedStyleSidebarPane.css",
103 "elementsPanel.css", 122 "elementsPanel.css",
104 "elementsTreeOutline.css", 123 "elementsTreeOutline.css",
105 "spectrum.css" 124 "spectrum.css"
106 ] 125 ]
107 } 126 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/elements/elementsPanel.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698