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

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

Issue 224843014: DevTools: support importing layer tree from trace snapshots. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebased, removed redundant transform handling code 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 571 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 ];
OLDNEW
« no previous file with comments | « Source/devtools/front_end/TimelineTracingView.js ('k') | Source/devtools/front_end/timelinePanel.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698