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

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

Issue 2864263002: [DevTools] Expose TCP targets config in frontend, use it for Node (Closed)
Patch Set: works 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": "@Common.AppProvider", 4 "type": "@Common.AppProvider",
5 "className": "Main.SimpleAppProvider", 5 "className": "Main.SimpleAppProvider",
6 "order": 10 6 "order": 10
7 }, 7 },
8 { 8 {
9 "type": "@UI.ContextMenu.Provider", 9 "type": "@UI.ContextMenu.Provider",
10 "contextTypes": [ 10 "contextTypes": [
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
203 "order": 100 203 "order": 100
204 }, 204 },
205 { 205 {
206 "type": "@UI.ToolbarItem.Provider", 206 "type": "@UI.ToolbarItem.Provider",
207 "className": "Main.Main.WarningErrorCounter", 207 "className": "Main.Main.WarningErrorCounter",
208 "order": 1, 208 "order": 1,
209 "location": "main-toolbar-right" 209 "location": "main-toolbar-right"
210 }, 210 },
211 { 211 {
212 "type": "@UI.ToolbarItem.Provider", 212 "type": "@UI.ToolbarItem.Provider",
213 "className": "Main.Main.NodeConnectionLink",
214 "condition": "nodeFrontend",
215 "order": 2,
216 "location": "main-toolbar-right"
217 },
218 {
219 "type": "@UI.ToolbarItem.Provider",
213 "separator": true, 220 "separator": true,
214 "order": 98, 221 "order": 98,
215 "location": "main-toolbar-right" 222 "location": "main-toolbar-right"
216 }, 223 },
217 { 224 {
218 "type": "@UI.ToolbarItem.Provider", 225 "type": "@UI.ToolbarItem.Provider",
219 "className": "Main.Main.MainMenuItem", 226 "className": "Main.Main.MainMenuItem",
220 "order": 99, 227 "order": 99,
221 "location": "main-toolbar-right" 228 "location": "main-toolbar-right"
222 }, 229 },
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
360 "subMenuId": "mainMenuHelp", 367 "subMenuId": "mainMenuHelp",
361 "order": 30 368 "order": 30
362 }, 369 },
363 { 370 {
364 "type": "view", 371 "type": "view",
365 "location": "drawer-view", 372 "location": "drawer-view",
366 "id": "rendering", 373 "id": "rendering",
367 "title": "Rendering", 374 "title": "Rendering",
368 "persistence": "closeable", 375 "persistence": "closeable",
369 "order": 50, 376 "order": 50,
377 "condition": "!v8only",
370 "className": "Main.RenderingOptionsView" 378 "className": "Main.RenderingOptionsView"
371 }, 379 },
372 { 380 {
373 "type": "setting", 381 "type": "setting",
374 "category": "DevTools", 382 "category": "DevTools",
375 "settingName": "currentDockState", 383 "settingName": "currentDockState",
376 "settingType": "enum", 384 "settingType": "enum",
377 "defaultValue": "right", 385 "defaultValue": "right",
378 "options": [ 386 "options": [
379 { 387 {
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
435 "ExecutionContextSelector.js", 443 "ExecutionContextSelector.js",
436 "Main.js" 444 "Main.js"
437 ], 445 ],
438 "resources": [ 446 "resources": [
439 "errorWarningCounter.css", 447 "errorWarningCounter.css",
440 "remoteDebuggingTerminatedScreen.css", 448 "remoteDebuggingTerminatedScreen.css",
441 "renderingOptions.css", 449 "renderingOptions.css",
442 "targetCrashedScreen.css" 450 "targetCrashedScreen.css"
443 ] 451 ]
444 } 452 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698