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

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

Issue 2510193003: [DevTools] Move link click and context menu handling to Linkifier. (Closed)
Patch Set: fixed comments Created 4 years, 1 month 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": ["Workspace.UISourceCode", "SDK.Resource", "SDK.Netw orkRequest", "Node"], 10 "contextTypes": ["Workspace.UISourceCode", "SDK.Resource", "SDK.Netw orkRequest"],
11 "className": "Components.HandlerRegistry.ContextMenuProvider" 11 "className": "Components.HandlerRegistry.ContextMenuProvider"
12 }, 12 },
13 { 13 {
14 "type": "@UI.ContextMenu.Provider", 14 "type": "@UI.ContextMenu.Provider",
15 "contextTypes": ["Node"], 15 "contextTypes": ["Node"],
16 "className": "UI.ExternaLinkContextMenuProvider" 16 "className": "UI.ExternaLinkContextMenuProvider"
17 }, 17 },
18 { 18 {
19 "type": "@UI.ContextMenu.Provider",
20 "contextTypes": ["Node"],
21 "className": "Components.Linkifier.LinkContextMenuProvider"
22 },
23 {
19 "type": "@UI.ActionDelegate", 24 "type": "@UI.ActionDelegate",
20 "category": "Navigation", 25 "category": "Navigation",
21 "actionId": "main.reload", 26 "actionId": "main.reload",
22 "className": "Main.Main.ReloadActionDelegate", 27 "className": "Main.Main.ReloadActionDelegate",
23 "title": "Reload page", 28 "title": "Reload page",
24 "bindings": [ 29 "bindings": [
25 { 30 {
26 "platform": "windows,linux", 31 "platform": "windows,linux",
27 "shortcut": "F5 Ctrl+R" 32 "shortcut": "F5 Ctrl+R"
28 }, 33 },
(...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after
359 "OverlayController.js", 364 "OverlayController.js",
360 "Main.js" 365 "Main.js"
361 ], 366 ],
362 "resources": [ 367 "resources": [
363 "errorWarningCounter.css", 368 "errorWarningCounter.css",
364 "remoteDebuggingTerminatedScreen.css", 369 "remoteDebuggingTerminatedScreen.css",
365 "renderingOptions.css", 370 "renderingOptions.css",
366 "targetCrashedScreen.css" 371 "targetCrashedScreen.css"
367 ] 372 ]
368 } 373 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698