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

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

Issue 2837203002: [DevTools] Move dom breakpoints to DOMDebuggerModel (Closed)
Patch Set: addressed review comments Created 3 years, 7 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": "view", 4 "type": "view",
5 "location": "panel", 5 "location": "panel",
6 "id": "elements", 6 "id": "elements",
7 "title": "Elements", 7 "title": "Elements",
8 "order": 10, 8 "order": 10,
9 "className": "Elements.ElementsPanel" 9 "className": "Elements.ElementsPanel"
10 }, 10 },
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
228 "id": "elements.eventListeners", 228 "id": "elements.eventListeners",
229 "title": "Event Listeners", 229 "title": "Event Listeners",
230 "order": 5, 230 "order": 5,
231 "hasToolbar": true, 231 "hasToolbar": true,
232 "persistence": "permanent", 232 "persistence": "permanent",
233 "className": "Elements.EventListenersWidget" 233 "className": "Elements.EventListenersWidget"
234 }, 234 },
235 { 235 {
236 "type": "view", 236 "type": "view",
237 "location": "elements-sidebar", 237 "location": "elements-sidebar",
238 "id": "elements.domBreakpoints",
239 "title": "DOM Breakpoints",
240 "order": 6,
241 "persistence": "permanent",
242 "factoryName": "Components.DOMBreakpointsSidebarPane.Proxy"
243 },
244 {
245 "type": "view",
246 "location": "elements-sidebar",
247 "id": "elements.domProperties", 238 "id": "elements.domProperties",
248 "title": "Properties", 239 "title": "Properties",
249 "order": 7, 240 "order": 7,
250 "persistence": "permanent", 241 "persistence": "permanent",
251 "className": "Elements.PropertiesWidget" 242 "className": "Elements.PropertiesWidget"
252 } 243 }
253 ], 244 ],
254 "dependencies": [ 245 "dependencies": [
255 "components", 246 "components",
256 "extensions", 247 "extensions",
(...skipping 23 matching lines...) Expand all
280 ], 271 ],
281 "resources": [ 272 "resources": [
282 "breadcrumbs.css", 273 "breadcrumbs.css",
283 "computedStyleSidebarPane.css", 274 "computedStyleSidebarPane.css",
284 "elementsPanel.css", 275 "elementsPanel.css",
285 "elementsTreeOutline.css", 276 "elementsTreeOutline.css",
286 "platformFontsWidget.css", 277 "platformFontsWidget.css",
287 "stylesSectionTree.css" 278 "stylesSectionTree.css"
288 ] 279 ]
289 } 280 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698