HomeSort by relevance Sort by last modified time
    Searched defs:Panel (Results 1 - 16 of 16) sorted by null

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
ConsolePanel.js 31 * @extends {WebInspector.Panel}
35 WebInspector.Panel.call(this, "console");
48 WebInspector.Panel.prototype.wasShown.call(this);
62 WebInspector.Panel.prototype.willHide.call(this);
102 __proto__: WebInspector.Panel.prototype
ExtensionPanel.js 33 * @extends {WebInspector.Panel}
39 WebInspector.Panel.call(this, id);
42 var extensionView = new WebInspector.ExtensionView(id, pageURL, "extension panel");
69 WebInspector.Panel.prototype.searchCanceled.apply(this, arguments);
84 WebInspector.Panel.prototype.jumpToNextSearchResult.call(this);
90 WebInspector.Panel.prototype.jumpToPreviousSearchResult.call(this);
93 __proto__: WebInspector.Panel.prototype
ScriptsPanel.js 48 * @extends {WebInspector.Panel}
53 WebInspector.Panel.call(this, "scripts");
68 var helpSection = WebInspector.shortcutsScreen.section(WebInspector.UIString("Sources Panel"));
204 WebInspector.Panel.prototype.wasShown.call(this);
210 WebInspector.Panel.prototype.willHide.call(this);
    [all...]
ElementsPanel.js 40 * @extends {WebInspector.Panel}
44 WebInspector.Panel.call(this, "elements");
135 WebInspector.Panel.prototype.wasShown.call(this);
154 WebInspector.Panel.prototype.willHide.call(this);
655 var panel = this;
662 if (crumb === panel.crumbsElement.firstChild) {
676 panel.updateBreadcrumbSizes(crumb);
678 panel.selectDOMNode(crumb.representedObject, true);
    [all...]
Panel.js 34 WebInspector.Panel = function(name)
39 this.element.addStyleClass("panel");
49 WebInspector.Panel.counterRightMargin = 25;
51 WebInspector.Panel._minimalSearchQuerySize = 3;
53 WebInspector.Panel.prototype = {
66 var panelStatusBar = document.getElementById("panel-status-bar")
125 return WebInspector.Panel._minimalSearchQuerySize;
228 this.sidebarTree.panel = this;
304 * @param {WebInspector.Panel=} panel
    [all...]
ProfilesPanel.js 303 * @param {!WebInspector.ProfilesPanel} panel
306 view: function(panel)
309 this._view = this.createView(panel);
314 * @param {!WebInspector.ProfilesPanel} panel
317 createView: function(panel)
371 * @extends {WebInspector.Panel}
381 WebInspector.Panel.call(this, name);
533 WebInspector.Panel.prototype.wasShown.call(this);
562 WebInspector.Panel.prototype.reset.call(this);
948 var panel = this
    [all...]
TimelinePanel.js 41 * @extends {WebInspector.Panel}
45 WebInspector.Panel.call(this, "timeline");
715 WebInspector.Panel.prototype.wasShown.call(this);
727 WebInspector.Panel.prototype.willHide.call(this);
    [all...]
AuditsPanel.js 33 * @extends {WebInspector.Panel}
37 WebInspector.Panel.call(this, "audits");
163 WebInspector.Panel.prototype.wasShown.call(this);
174 __proto__: WebInspector.Panel.prototype
445 * @param {WebInspector.AuditsPanel} panel
447 WebInspector.AuditsSidebarTreeElement = function(panel)
449 this._panel = panel;
481 * @param {!WebInspector.AuditsPanel} panel
486 WebInspector.AuditResultSidebarTreeElement = function(panel, results, mainResourceURL, ordinal)
488 this._panel = panel;
    [all...]
ResourcesPanel.js 42 * @extends {WebInspector.Panel}
46 WebInspector.Panel.call(this, "resources");
134 WebInspector.Panel.prototype.wasShown.call(this);
754 // one search result then some search results can not be matched with a resource on panel.
    [all...]
externs.js 327 function Panel() {}
359 WebInspector.showPanel = function(panel)
  /external/chromium/chrome/browser/ui/panels/
panel.h 21 // - Do Panel specific platform independent processing and then invoke the
23 // Panel size is restricted to certain limits.
25 // other Panels. For example deleting a panel would rearrange other panels.
26 class Panel : public BrowserWindow {
28 virtual ~Panel();
30 // Returns the PanelManager associated with this panel.
130 // Construct a native panel BrowserWindow implementation for the specified
132 static BrowserWindow* CreateNativePanel(Browser* browser, Panel* panel);
140 // Panel can only be created using PanelManager::CreatePanel()
    [all...]
panel.cc 5 #include "chrome/browser/ui/panels/panel.h"
12 Panel::Panel(Browser* browser, const gfx::Rect& bounds)
18 Panel::~Panel() {
22 PanelManager* Panel::manager() const {
26 void Panel::Minimize() {
30 void Panel::Restore() {
34 void Panel::Show() {
38 void Panel::ShowInactive()
    [all...]
  /external/chromium/chrome/browser/chromeos/panels/
panel_scroller.cc 17 struct PanelScroller::Panel {
33 Panel* panel = new Panel; local
34 panel->header = new PanelScrollerHeader(this);
35 panel->header->set_title(ASCIIToUTF16("Email"));
36 panel->container = new PanelScrollerContainer(this, new views::View());
37 panels_.push_back(panel);
39 panel = new Panel;
    [all...]
  /external/chromium_org/chrome/browser/ui/panels/
panel.h 46 // - Do Panel specific platform independent processing and then invoke the
47 // function on the platform specific member. For example, restrict panel
50 // other Panels. For example deleting a panel would rearrange other panels.
51 class Panel : public ui::BaseWindow,
56 // The panel is fully expanded with both title-bar and the client-area.
58 // The panel is shown with the title-bar only.
60 // The panel is shown with 3-pixel line.
66 // Uses the panel attention. The panel's titlebar would be painted
75 virtual ~Panel();
    [all...]
panel.cc 5 #include "chrome/browser/ui/panels/panel.h"
50 PanelExtensionWindowController(Panel* panel, Profile* profile);
67 Panel* panel_; // Weak pointer. Owns us.
72 Panel* panel, Profile* profile)
73 : extensions::WindowController(panel, profile),
74 panel_(panel) {
155 Panel::~Panel() {
    [all...]
  /prebuilts/devtools/tools/lib/
ddmuilib.jar 

Completed in 628 milliseconds