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 571 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
582 extensions: [ | 582 extensions: [ |
583 { | 583 { |
584 type: "@WebInspector.Panel", | 584 type: "@WebInspector.Panel", |
585 name: "layers", | 585 name: "layers", |
586 title: "Layers", | 586 title: "Layers", |
587 order: 7, | 587 order: 7, |
588 className: "WebInspector.LayersPanel" | 588 className: "WebInspector.LayersPanel" |
589 }, | 589 }, |
590 { | 590 { |
591 type: "@WebInspector.Revealer", | 591 type: "@WebInspector.Revealer", |
592 contextTypes: ["WebInspector.LayerTreeSnapshot"], | 592 contextTypes: ["WebInspector.LayerTreeSnapshot", "WebInspector.T
racingLayerSnapshot"], |
593 className: "WebInspector.LayersPanel.LayerTreeRevealer" | 593 className: "WebInspector.LayersPanel.LayerTreeRevealer" |
594 } | 594 } |
595 ], | 595 ], |
596 scripts: [ "LayersPanel.js" ] | 596 scripts: [ "LayersPanel.js" ] |
597 }, | 597 }, |
598 { | 598 { |
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 |