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

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

Issue 2205123003: DevTools: introduce view locations, allow opening views by id. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comments addressed Created 4 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": "@WebInspector.AppProvider", 4 "type": "@WebInspector.AppProvider",
5 "className": "WebInspector.SimpleAppProvider", 5 "className": "WebInspector.SimpleAppProvider",
6 "order": 10 6 "order": 10
7 }, 7 },
8 { 8 {
9 "type": "@WebInspector.ContextMenu.Provider", 9 "type": "@WebInspector.ContextMenu.Provider",
10 "contextTypes": ["WebInspector.UISourceCode", "WebInspector.Resource ", "WebInspector.NetworkRequest", "Node"], 10 "contextTypes": ["WebInspector.UISourceCode", "WebInspector.Resource ", "WebInspector.NetworkRequest", "Node"],
(...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after
318 { 318 {
319 "type": "context-menu-item", 319 "type": "context-menu-item",
320 "location": "mainMenu/navigate", 320 "location": "mainMenu/navigate",
321 "title": "More tools", 321 "title": "More tools",
322 "subMenuId": "mainMenuMoreTools", 322 "subMenuId": "mainMenuMoreTools",
323 "order": 80 323 "order": 80
324 }, 324 },
325 { 325 {
326 "type": "view", 326 "type": "view",
327 "location": "drawer-view", 327 "location": "drawer-view",
328 "name": "rendering", 328 "id": "rendering",
329 "title": "Rendering", 329 "title": "Rendering",
330 "persistence": "closeable", 330 "persistence": "closeable",
331 "order": 50, 331 "order": 50,
332 "className": "WebInspector.RenderingOptionsView" 332 "className": "WebInspector.RenderingOptionsView"
333 }, 333 },
334 { 334 {
335 "type": "setting", 335 "type": "setting",
336 "category": "DevTools", 336 "category": "DevTools",
337 "settingName": "currentDockState", 337 "settingName": "currentDockState",
338 "settingType": "enum", 338 "settingType": "enum",
339 "defaultValue": "right", 339 "defaultValue": "right",
340 "options": [ 340 "options": [
341 { "value": "right", "title": "Dock to right" }, 341 { "value": "right", "title": "Dock to right" },
342 { "value": "bottom", "title": "Dock to bottom" }, 342 { "value": "bottom", "title": "Dock to bottom" },
343 { "value": "undocked", "title": "Undock into separate window" } 343 { "value": "undocked", "title": "Undock into separate window" }
344 ] 344 ]
345 },
346 {
347 "type": "@WebInspector.ViewLocationResolver",
348 "name": "drawer-view",
349 "className": "WebInspector.InspectorView"
345 } 350 }
346 ], 351 ],
347 "dependencies": [ 352 "dependencies": [
348 "extensions", 353 "extensions",
349 "host", 354 "host",
350 "platform", 355 "platform",
351 "sdk" 356 "sdk"
352 ], 357 ],
353 "scripts": [ 358 "scripts": [
354 "RenderingOptions.js", 359 "RenderingOptions.js",
355 "SimpleApp.js", 360 "SimpleApp.js",
356 "OverlayController.js", 361 "OverlayController.js",
357 "Connections.js", 362 "Connections.js",
358 "Main.js" 363 "Main.js"
359 ], 364 ],
360 "resources": [ 365 "resources": [
361 "errorWarningCounter.css", 366 "errorWarningCounter.css",
362 "remoteDebuggingTerminatedScreen.css", 367 "remoteDebuggingTerminatedScreen.css",
363 "renderingOptions.css", 368 "renderingOptions.css",
364 "targetCrashedScreen.css" 369 "targetCrashedScreen.css"
365 ] 370 ]
366 } 371 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698