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

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

Issue 1292673002: [DevTools] Group options in network presets select. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Updated visual design Created 5 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 | Annotate | Revision Log
OLDNEW
1 { 1 {
2 "extensions": [ 2 "extensions": [
3 { 3 {
4 "type": "@WebInspector.ActionDelegate", 4 "type": "@WebInspector.ActionDelegate",
5 "actionId": "settings.show", 5 "actionId": "settings.show",
6 "className": "WebInspector.SettingsController.ActionDelegate", 6 "className": "WebInspector.SettingsController.ActionDelegate",
7 "bindings": [ 7 "bindings": [
8 { 8 {
9 "shortcut": "F1 Shift+?" 9 "shortcut": "F1 Shift+?"
10 } 10 }
11 ] 11 ]
12 }, 12 },
13 { 13 {
14 "type": "@WebInspector.ActionDelegate", 14 "type": "@WebInspector.ActionDelegate",
15 "actionId": "settings.help", 15 "actionId": "settings.help",
16 "className": "WebInspector.SettingsController.ActionDelegate" 16 "className": "WebInspector.SettingsController.ActionDelegate"
17 }, 17 },
18 { 18 {
19 "type": "@WebInspector.ActionDelegate", 19 "type": "@WebInspector.ActionDelegate",
20 "actionId": "settings.shortcuts", 20 "actionId": "settings.shortcuts",
21 "className": "WebInspector.SettingsController.ActionDelegate" 21 "className": "WebInspector.SettingsController.ActionDelegate"
22 }, 22 },
23 { 23 {
24 "type": "@WebInspector.SettingUI", 24 "type": "@WebInspector.SettingUI",
25 "category": "Sources", 25 "category": "Sources",
26 "className": "WebInspector.SettingsScreen.SkipStackFramePatternSetti ngUI" 26 "className": "WebInspector.SettingsScreen.SkipStackFramePatternSetti ngUI",
27 "settings": [
28 "skipContentScripts",
29 "skipStackFramesPattern"
30 ]
31 },
32 {
33 "type": "@WebInspector.Revealer",
34 "contextTypes": ["WebInspector.Setting"],
35 "className": "WebInspector.SettingsController.Revealer"
27 }, 36 },
28 { 37 {
29 "type": "context-menu-item", 38 "type": "context-menu-item",
30 "location": "mainMenu/footer", 39 "location": "mainMenu/footer",
31 "title": "Shortcuts", 40 "title": "Shortcuts",
32 "actionId": "settings.shortcuts" 41 "actionId": "settings.shortcuts"
33 }, 42 },
34 { 43 {
35 "type": "context-menu-item", 44 "type": "context-menu-item",
36 "location": "mainMenu/footer", 45 "location": "mainMenu/footer",
37 "title": "Settings", 46 "title": "Settings",
38 "actionId": "settings.show" 47 "actionId": "settings.show"
39 }, 48 },
40 { 49 {
41 "type": "context-menu-item", 50 "type": "context-menu-item",
42 "location": "mainMenu/footer", 51 "location": "mainMenu/footer",
43 "title": "Help", 52 "title": "Help",
44 "actionId": "settings.help" 53 "actionId": "settings.help"
45 } 54 }
46 ], 55 ],
47 "dependencies": [ 56 "dependencies": [
48 "components" 57 "components"
49 ], 58 ],
50 "scripts": [ 59 "scripts": [
51 "EditFileSystemDialog.js", 60 "EditFileSystemDialog.js",
52 "FrameworkBlackboxDialog.js", 61 "FrameworkBlackboxDialog.js",
53 "SettingsScreen.js" 62 "SettingsScreen.js"
54 ] 63 ]
55 } 64 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698