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

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

Issue 2868543002: DevTools: move FileSystemMapping under persistence/ module (Closed)
Patch Set: fix copyright 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": "@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 {
(...skipping 10 matching lines...) Expand all
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": [
32 "Common.Setting"
33 ],
32 "className": "Settings.SettingsScreen.Revealer" 34 "className": "Settings.SettingsScreen.Revealer"
33 }, 35 },
34 { 36 {
35 "type": "context-menu-item", 37 "type": "context-menu-item",
36 "location": "mainMenu/footer", 38 "location": "mainMenu/footer",
37 "order": 10, 39 "order": 10,
38 "actionId": "settings.shortcuts" 40 "actionId": "settings.shortcuts"
39 }, 41 },
40 { 42 {
41 "type": "context-menu-item", 43 "type": "context-menu-item",
42 "location": "mainMenu/footer", 44 "location": "mainMenu/footer",
43 "order": 20, 45 "order": 20,
44 "actionId": "settings.show" 46 "actionId": "settings.show"
45 }, 47 },
46 { 48 {
47 "type": "view", 49 "type": "view",
48 "location": "settings-view", 50 "location": "settings-view",
49 "id": "preferences", 51 "id": "preferences",
50 "title": "Preferences", 52 "title": "Preferences",
51 "order": "0", 53 "order": "0",
52 "className": "Settings.GenericSettingsTab" 54 "className": "Settings.GenericSettingsTab"
53 }, 55 },
54 { 56 {
55 "type": "view", 57 "type": "view",
56 "location": "settings-view", 58 "location": "settings-view",
57 "id": "workspace",
58 "title": "Workspace",
59 "order": "1",
60 "className": "Settings.WorkspaceSettingsTab"
61 },
62 {
63 "type": "view",
64 "location": "settings-view",
65 "id": "experiments", 59 "id": "experiments",
66 "title": "Experiments", 60 "title": "Experiments",
67 "order": "2", 61 "order": "2",
68 "experiment": "*", 62 "experiment": "*",
69 "className": "Settings.ExperimentsSettingsTab" 63 "className": "Settings.ExperimentsSettingsTab"
70 }, 64 },
71 { 65 {
72 "type": "view", 66 "type": "view",
73 "location": "settings-view", 67 "location": "settings-view",
74 "id": "blackbox", 68 "id": "blackbox",
75 "title": "Blackboxing", 69 "title": "Blackboxing",
76 "order": "3", 70 "order": "3",
77 "className": "Settings.FrameworkBlackboxSettingsTab" 71 "className": "Settings.FrameworkBlackboxSettingsTab"
78 }, 72 },
79 { 73 {
80 "type": "@UI.ViewLocationResolver", 74 "type": "@UI.ViewLocationResolver",
81 "name": "settings-view", 75 "name": "settings-view",
82 "category": "Settings", 76 "category": "Settings",
83 "className": "Settings.SettingsScreen" 77 "className": "Settings.SettingsScreen"
84 } 78 }
85 ], 79 ],
86 "dependencies": [ 80 "dependencies": [
87 "components" 81 "components"
88 ], 82 ],
89 "scripts": [ 83 "scripts": [
90 "EditFileSystemView.js",
91 "SettingsScreen.js", 84 "SettingsScreen.js",
92 "FrameworkBlackboxSettingsTab.js" 85 "FrameworkBlackboxSettingsTab.js"
93 ], 86 ],
94 "resources": [ 87 "resources": [
95 "editFileSystemView.css",
96 "frameworkBlackboxSettingsTab.css", 88 "frameworkBlackboxSettingsTab.css",
97 "settingsScreen.css" 89 "settingsScreen.css"
98 ] 90 ]
99 } 91 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698