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

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

Issue 2580903003: DevTools: Rearrange Timeline toolbar for landing page mode (Closed)
Patch Set: Created 4 years 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"], 10 "contextTypes": ["Workspace.UISourceCode", "SDK.Resource", "SDK.Netw orkRequest"],
11 "className": "Components.Linkifier.ContentProviderContextMenuProvide r" 11 "className": "Components.Linkifier.ContentProviderContextMenuProvide r"
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", 19 "type": "@UI.ContextMenu.Provider",
20 "contextTypes": ["Node"], 20 "contextTypes": ["Node"],
21 "className": "Components.Linkifier.LinkContextMenuProvider" 21 "className": "Components.Linkifier.LinkContextMenuProvider"
22 }, 22 },
23 { 23 {
24 "type": "@UI.ActionDelegate", 24 "type": "@UI.ActionDelegate",
25 "category": "Navigation", 25 "category": "Navigation",
26 "actionId": "main.reload", 26 "actionId": "main.reload",
27 "className": "Main.Main.ReloadActionDelegate", 27 "className": "Main.Main.ReloadActionDelegate",
28 "iconClass": "largeicon-refresh",
28 "title": "Reload page", 29 "title": "Reload page",
29 "bindings": [ 30 "bindings": [
30 { 31 {
31 "platform": "windows,linux", 32 "platform": "windows,linux",
32 "shortcut": "F5 Ctrl+R" 33 "shortcut": "F5 Ctrl+R"
33 }, 34 },
34 { 35 {
35 "platform": "mac", 36 "platform": "mac",
36 "shortcut": "Meta+R" 37 "shortcut": "Meta+R"
37 } 38 }
(...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after
364 "OverlayController.js", 365 "OverlayController.js",
365 "Main.js" 366 "Main.js"
366 ], 367 ],
367 "resources": [ 368 "resources": [
368 "errorWarningCounter.css", 369 "errorWarningCounter.css",
369 "remoteDebuggingTerminatedScreen.css", 370 "remoteDebuggingTerminatedScreen.css",
370 "renderingOptions.css", 371 "renderingOptions.css",
371 "targetCrashedScreen.css" 372 "targetCrashedScreen.css"
372 ] 373 ]
373 } 374 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698