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

Side by Side Diff: Source/devtools/front_end/elements/ElementsPanel.js

Issue 385173007: DevTools: move UI components to target observers in preparation to early UI initialization. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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) 2007, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2007, 2008 Apple Inc. All rights reserved.
3 * Copyright (C) 2008 Matt Lilek <webkit@mattlilek.com> 3 * Copyright (C) 2008 Matt Lilek <webkit@mattlilek.com>
4 * Copyright (C) 2009 Joseph Pecoraro 4 * Copyright (C) 2009 Joseph Pecoraro
5 * 5 *
6 * Redistribution and use in source and binary forms, with or without 6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions 7 * modification, are permitted provided that the following conditions
8 * are met: 8 * are met:
9 * 9 *
10 * 1. Redistributions of source code must retain the above copyright 10 * 1. Redistributions of source code must retain the above copyright
(...skipping 17 matching lines...) Expand all
28 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 importScript("Spectrum.js"); 31 importScript("Spectrum.js");
32 importScript("DOMSyntaxHighlighter.js"); 32 importScript("DOMSyntaxHighlighter.js");
33 importScript("ElementsTreeOutline.js"); 33 importScript("ElementsTreeOutline.js");
34 importScript("EventListenersSidebarPane.js"); 34 importScript("EventListenersSidebarPane.js");
35 importScript("MetricsSidebarPane.js"); 35 importScript("MetricsSidebarPane.js");
36 importScript("PlatformFontsSidebarPane.js"); 36 importScript("PlatformFontsSidebarPane.js");
37 importScript("PropertiesSidebarPane.js"); 37 importScript("PropertiesSidebarPane.js");
38 importScript("RenderingOptionsView.js");
39 importScript("StylesSidebarPane.js"); 38 importScript("StylesSidebarPane.js");
40 39
41 /** 40 /**
42 * @constructor 41 * @constructor
43 * @implements {WebInspector.Searchable} 42 * @implements {WebInspector.Searchable}
44 * @implements {WebInspector.TargetManager.Observer} 43 * @implements {WebInspector.TargetManager.Observer}
45 * @extends {WebInspector.Panel} 44 * @extends {WebInspector.Panel}
46 */ 45 */
47 WebInspector.ElementsPanel = function() 46 WebInspector.ElementsPanel = function()
48 { 47 {
(...skipping 1423 matching lines...) Expand 10 before | Expand all | Expand 10 after
1472 /** 1471 /**
1473 * @suppressReceiverCheck 1472 * @suppressReceiverCheck
1474 * @this {Element} 1473 * @this {Element}
1475 */ 1474 */
1476 function parentElement() 1475 function parentElement()
1477 { 1476 {
1478 return this.parentElement; 1477 return this.parentElement;
1479 } 1478 }
1480 } 1479 }
1481 } 1480 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/common/Settings.js ('k') | Source/devtools/front_end/elements/RenderingOptionsView.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698