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

Side by Side Diff: Source/devtools/front_end/modules.js

Issue 236683004: DevTools: Merge SearchView into AdvancedSearchController (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Change getter to method Created 6 years, 8 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 * 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
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
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 ];
OLDNEW
« no previous file with comments | « Source/devtools/front_end/AdvancedSearchView.js ('k') | Source/devtools/scripts/compile_frontend.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698