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

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

Issue 2721233003: DevTools: create help sub-menu (Closed)
Patch Set: fixup Created 3 years, 9 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
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/settings/SettingsScreen.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 "extensions": [ 2 "extensions": [
3 { 3 {
4 "type": "@UI.ActionDelegate", 4 "type": "@UI.ActionDelegate",
5 "category": "Settings", 5 "category": "Settings",
6 "actionId": "settings.show", 6 "actionId": "settings.show",
7 "title": "Settings", 7 "title": "Settings",
8 "className": "Settings.SettingsScreen.ActionDelegate", 8 "className": "Settings.SettingsScreen.ActionDelegate",
9 "bindings": [ 9 "bindings": [
10 { 10 {
11 "shortcut": "F1 Shift+?" 11 "shortcut": "F1 Shift+?"
12 } 12 }
13 ] 13 ]
14 }, 14 },
15 { 15 {
16 "type": "@UI.ActionDelegate", 16 "type": "@UI.ActionDelegate",
17 "category": "Settings", 17 "category": "Settings",
18 "actionId": "settings.help", 18 "actionId": "settings.documentation",
19 "title": "Help", 19 "title": "Documentation",
20 "className": "Settings.SettingsScreen.ActionDelegate" 20 "className": "Settings.SettingsScreen.ActionDelegate"
21 }, 21 },
22 { 22 {
23 "type": "@UI.ActionDelegate", 23 "type": "@UI.ActionDelegate",
24 "category": "Settings", 24 "category": "Settings",
25 "actionId": "settings.shortcuts", 25 "actionId": "settings.shortcuts",
26 "title": "Shortcuts", 26 "title": "Shortcuts",
27 "className": "Settings.SettingsScreen.ActionDelegate" 27 "className": "Settings.SettingsScreen.ActionDelegate"
28 }, 28 },
29 { 29 {
30 "type": "@Common.Revealer", 30 "type": "@Common.Revealer",
31 "contextTypes": ["Common.Setting"], 31 "contextTypes": ["Common.Setting"],
32 "className": "Settings.SettingsScreen.Revealer" 32 "className": "Settings.SettingsScreen.Revealer"
33 }, 33 },
34 { 34 {
35 "type": "context-menu-item", 35 "type": "context-menu-item",
36 "location": "mainMenu/footer", 36 "location": "mainMenu/footer",
37 "order": 10, 37 "order": 10,
38 "actionId": "settings.shortcuts" 38 "actionId": "settings.shortcuts"
39 }, 39 },
40 { 40 {
41 "type": "context-menu-item", 41 "type": "context-menu-item",
42 "location": "mainMenu/footer", 42 "location": "mainMenu/footer",
43 "order": 20, 43 "order": 20,
44 "actionId": "settings.show" 44 "actionId": "settings.show"
45 }, 45 },
46 { 46 {
47 "type": "context-menu-item",
48 "location": "mainMenu/footer",
49 "order": 30,
50 "actionId": "settings.help"
51 },
52 {
53 "type": "view", 47 "type": "view",
54 "location": "settings-view", 48 "location": "settings-view",
55 "id": "preferences", 49 "id": "preferences",
56 "title": "Preferences", 50 "title": "Preferences",
57 "order": "0", 51 "order": "0",
58 "className": "Settings.GenericSettingsTab" 52 "className": "Settings.GenericSettingsTab"
59 }, 53 },
60 { 54 {
61 "type": "view", 55 "type": "view",
62 "location": "settings-view", 56 "location": "settings-view",
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 "EditFileSystemView.js", 89 "EditFileSystemView.js",
96 "SettingsScreen.js", 90 "SettingsScreen.js",
97 "FrameworkBlackboxSettingsTab.js" 91 "FrameworkBlackboxSettingsTab.js"
98 ], 92 ],
99 "resources": [ 93 "resources": [
100 "editFileSystemView.css", 94 "editFileSystemView.css",
101 "frameworkBlackboxSettingsTab.css", 95 "frameworkBlackboxSettingsTab.css",
102 "settingsScreen.css" 96 "settingsScreen.css"
103 ] 97 ]
104 } 98 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/settings/SettingsScreen.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698