| OLD | NEW |
| 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 Loading... |
| 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 { |
| 181 "type": "@WebInspector.ToolbarItem.Provider", | 187 "type": "@WebInspector.ToolbarItem.Provider", |
| 182 "separator": true, | 188 "separator": true, |
| 183 "location": "main-toolbar-left", | 189 "location": "main-toolbar-left", |
| 184 "order": 100 | 190 "order": 100 |
| 185 }, | 191 }, |
| 186 { | 192 { |
| 187 "type": "@WebInspector.ToolbarItem.Provider", | 193 "type": "@WebInspector.ToolbarItem.Provider", |
| 188 "className": "WebInspector.Main.WarningErrorCounter", | 194 "className": "WebInspector.Main.WarningErrorCounter", |
| 189 "order": 1, | 195 "order": 1, |
| 190 "location": "main-toolbar-right" | 196 "location": "main-toolbar-right" |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 308 { | 314 { |
| 309 "type": "@WebInspector.SettingUI", | 315 "type": "@WebInspector.SettingUI", |
| 310 "category": "Elements", | 316 "category": "Elements", |
| 311 "order": 3, | 317 "order": 3, |
| 312 "className": "WebInspector.ShowMetricsRulersSettingUI" | 318 "className": "WebInspector.ShowMetricsRulersSettingUI" |
| 313 }, | 319 }, |
| 314 { | 320 { |
| 315 "type": "context-menu-item", | 321 "type": "context-menu-item", |
| 316 "location": "mainMenu/navigate", | 322 "location": "mainMenu/navigate", |
| 317 "title": "More tools", | 323 "title": "More tools", |
| 318 "subMenuId": "mainMenuMoreTools", | 324 "subMenuId": "mainMenu/tools", |
| 319 "order": 80 | 325 "order": 80 |
| 320 }, | 326 }, |
| 321 { | 327 { |
| 328 "type": "context-menu-item", |
| 329 "location": "mainMenu/tools/open", |
| 330 "order": 80, |
| 331 "actionId": "main.show-rendering-options" |
| 332 }, |
| 333 { |
| 322 "type": "drawer-view", | 334 "type": "drawer-view", |
| 323 "name": "rendering", | 335 "name": "rendering", |
| 324 "title": "Rendering", | 336 "title": "Rendering", |
| 325 "persistence": "closeable", | 337 "persistence": "closeable", |
| 326 "order": 50, | 338 "order": 50, |
| 327 "className": "WebInspector.RenderingOptionsView" | 339 "className": "WebInspector.RenderingOptionsView" |
| 328 }, | 340 }, |
| 329 { | 341 { |
| 330 "type": "setting", | 342 "type": "setting", |
| 331 "category": "DevTools", | 343 "category": "DevTools", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 352 "Connections.js", | 364 "Connections.js", |
| 353 "Main.js" | 365 "Main.js" |
| 354 ], | 366 ], |
| 355 "resources": [ | 367 "resources": [ |
| 356 "errorWarningCounter.css", | 368 "errorWarningCounter.css", |
| 357 "remoteDebuggingTerminatedScreen.css", | 369 "remoteDebuggingTerminatedScreen.css", |
| 358 "renderingOptions.css", | 370 "renderingOptions.css", |
| 359 "targetCrashedScreen.css" | 371 "targetCrashedScreen.css" |
| 360 ] | 372 ] |
| 361 } | 373 } |
| OLD | NEW |