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

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

Issue 2137763002: DevTools: automatically populate 'More tools' submenu with the drawer views. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: for landing Created 4 years, 5 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": "@WebInspector.AppProvider", 4 "type": "@WebInspector.AppProvider",
5 "className": "WebInspector.SimpleAppProvider", 5 "className": "WebInspector.SimpleAppProvider",
6 "order": 10 6 "order": 10
7 }, 7 },
8 { 8 {
9 "type": "@WebInspector.ContextMenu.Provider", 9 "type": "@WebInspector.ContextMenu.Provider",
10 "contextTypes": ["WebInspector.UISourceCode", "WebInspector.Resource ", "WebInspector.NetworkRequest", "Node"], 10 "contextTypes": ["WebInspector.UISourceCode", "WebInspector.Resource ", "WebInspector.NetworkRequest", "Node"],
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 "actionId": "main.search-in-panel.find-previous", 171 "actionId": "main.search-in-panel.find-previous",
172 "className": "WebInspector.Main.SearchActionDelegate", 172 "className": "WebInspector.Main.SearchActionDelegate",
173 "bindings": [ 173 "bindings": [
174 { 174 {
175 "platform": "mac", 175 "platform": "mac",
176 "shortcut": "Meta+Shift+G" 176 "shortcut": "Meta+Shift+G"
177 } 177 }
178 ] 178 ]
179 }, 179 },
180 { 180 {
181 "type": "@WebInspector.ActionDelegate",
182 "actionId": "main.show-rendering-options",
183 "title": "Rendering settings",
184 "className": "WebInspector.RenderingOptionsView.ShowActionDelegate"
185 },
186 {
187 "type": "@WebInspector.ToolbarItem.Provider", 181 "type": "@WebInspector.ToolbarItem.Provider",
188 "separator": true, 182 "separator": true,
189 "location": "main-toolbar-left", 183 "location": "main-toolbar-left",
190 "order": 100 184 "order": 100
191 }, 185 },
192 { 186 {
193 "type": "@WebInspector.ToolbarItem.Provider", 187 "type": "@WebInspector.ToolbarItem.Provider",
194 "className": "WebInspector.Main.WarningErrorCounter", 188 "className": "WebInspector.Main.WarningErrorCounter",
195 "order": 1, 189 "order": 1,
196 "location": "main-toolbar-right" 190 "location": "main-toolbar-right"
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
314 { 308 {
315 "type": "@WebInspector.SettingUI", 309 "type": "@WebInspector.SettingUI",
316 "category": "Elements", 310 "category": "Elements",
317 "order": 3, 311 "order": 3,
318 "className": "WebInspector.ShowMetricsRulersSettingUI" 312 "className": "WebInspector.ShowMetricsRulersSettingUI"
319 }, 313 },
320 { 314 {
321 "type": "context-menu-item", 315 "type": "context-menu-item",
322 "location": "mainMenu/navigate", 316 "location": "mainMenu/navigate",
323 "title": "More tools", 317 "title": "More tools",
324 "subMenuId": "mainMenu/tools", 318 "subMenuId": "mainMenuMoreTools",
325 "order": 80 319 "order": 80
326 }, 320 },
327 { 321 {
328 "type": "context-menu-item",
329 "location": "mainMenu/tools/open",
330 "order": 80,
331 "actionId": "main.show-rendering-options"
332 },
333 {
334 "type": "drawer-view", 322 "type": "drawer-view",
335 "name": "rendering", 323 "name": "rendering",
336 "title": "Rendering", 324 "title": "Rendering",
337 "persistence": "closeable", 325 "persistence": "closeable",
338 "order": 50, 326 "order": 50,
339 "className": "WebInspector.RenderingOptionsView" 327 "className": "WebInspector.RenderingOptionsView"
340 }, 328 },
341 { 329 {
342 "type": "setting", 330 "type": "setting",
343 "category": "DevTools", 331 "category": "DevTools",
(...skipping 20 matching lines...) Expand all
364 "Connections.js", 352 "Connections.js",
365 "Main.js" 353 "Main.js"
366 ], 354 ],
367 "resources": [ 355 "resources": [
368 "errorWarningCounter.css", 356 "errorWarningCounter.css",
369 "remoteDebuggingTerminatedScreen.css", 357 "remoteDebuggingTerminatedScreen.css",
370 "renderingOptions.css", 358 "renderingOptions.css",
371 "targetCrashedScreen.css" 359 "targetCrashedScreen.css"
372 ] 360 ]
373 } 361 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698