| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2014 Google Inc. All rights reserved. | 2 * Copyright (C) 2014 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * | 10 * |
| (...skipping 516 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 527 scripts: [ "ConsolePanel.js" ] | 527 scripts: [ "ConsolePanel.js" ] |
| 528 }, | 528 }, |
| 529 { | 529 { |
| 530 name: "search", | 530 name: "search", |
| 531 extensions: [ | 531 extensions: [ |
| 532 { | 532 { |
| 533 type: "drawer-view", | 533 type: "drawer-view", |
| 534 name: "search", | 534 name: "search", |
| 535 title: "Search", | 535 title: "Search", |
| 536 order: "1", | 536 order: "1", |
| 537 className: "WebInspector.SearchView" | 537 className: "WebInspector.AdvancedSearchView" |
| 538 }, | 538 }, |
| 539 { | 539 { |
| 540 type: "@WebInspector.ActionDelegate", | 540 type: "@WebInspector.ActionDelegate", |
| 541 bindings: [ | 541 bindings: [ |
| 542 { | 542 { |
| 543 platform: "mac", | 543 platform: "mac", |
| 544 shortcut: "Meta+Alt+F" | 544 shortcut: "Meta+Alt+F" |
| 545 }, | 545 }, |
| 546 { | 546 { |
| 547 platform: "windows,linux", | 547 platform: "windows,linux", |
| 548 shortcut: "Ctrl+Shift+F" | 548 shortcut: "Ctrl+Shift+F" |
| 549 } | 549 } |
| 550 ], | 550 ], |
| 551 className: "WebInspector.AdvancedSearchController.ToggleDrawerV
iewActionDelegate" | 551 className: "WebInspector.AdvancedSearchView.ToggleDrawerViewAct
ionDelegate" |
| 552 } | 552 } |
| 553 ], | 553 ], |
| 554 scripts: [ "AdvancedSearchController.js" ] | 554 scripts: [ "AdvancedSearchView.js" ] |
| 555 }, | 555 }, |
| 556 { | 556 { |
| 557 name: "settings", | 557 name: "settings", |
| 558 extensions: [ | 558 extensions: [ |
| 559 { | 559 { |
| 560 type: "@WebInspector.ActionDelegate", | 560 type: "@WebInspector.ActionDelegate", |
| 561 bindings: [ | 561 bindings: [ |
| 562 { | 562 { |
| 563 shortcut: "F1 Shift+?" | 563 shortcut: "F1 Shift+?" |
| 564 } | 564 } |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 599 name: "handler-registry", | 599 name: "handler-registry", |
| 600 extensions: [ | 600 extensions: [ |
| 601 { | 601 { |
| 602 type: "@WebInspector.ContextMenu.Provider", | 602 type: "@WebInspector.ContextMenu.Provider", |
| 603 contextTypes: ["WebInspector.UISourceCode", "WebInspector.Resour
ce", "WebInspector.NetworkRequest", "Node"], | 603 contextTypes: ["WebInspector.UISourceCode", "WebInspector.Resour
ce", "WebInspector.NetworkRequest", "Node"], |
| 604 className: "WebInspector.HandlerRegistry.ContextMenuProvider" | 604 className: "WebInspector.HandlerRegistry.ContextMenuProvider" |
| 605 } | 605 } |
| 606 ] | 606 ] |
| 607 } | 607 } |
| 608 ]; | 608 ]; |
| OLD | NEW |