• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Views/

Lines Matching defs:TimelineSidebarPanel

26 WebInspector.TimelineSidebarPanel = function()
31 this._timelineEventsTitleBarElement.classList.add(WebInspector.TimelineSidebarPanel.TitleBarStyleClass);
32 this._timelineEventsTitleBarElement.classList.add(WebInspector.TimelineSidebarPanel.TimelineEventsTitleBarStyleClass);
38 this._timelinesContentContainer.classList.add(WebInspector.TimelineSidebarPanel.TimelinesContentContainerStyleClass);
48 timelinesTitleBarElement.classList.add(WebInspector.TimelineSidebarPanel.TitleBarStyleClass);
49 timelinesTitleBarElement.classList.add(WebInspector.TimelineSidebarPanel.TimelinesTitleBarStyleClass);
53 statusBarElement.classList.add(WebInspector.TimelineSidebarPanel.StatusBarStyleClass);
57 this._recordGlyphElement.className = WebInspector.TimelineSidebarPanel.RecordGlyphStyleClass;
64 this._recordStatusElement.className = WebInspector.TimelineSidebarPanel.RecordStatusStyleClass;
105 var treeElement = new WebInspector.GeneralTreeElement([iconClass, WebInspector.TimelineSidebarPanel.LargeIconStyleClass], label, null, identifier);
108 wrappedSVGDocument(platformImagePath("CloseLarge.svg"), WebInspector.TimelineSidebarPanel.CloseButtonStyleClass, tooltip, function(element) {
118 this._timelineTreeElementMap.set(WebInspector.TimelineRecord.Type.Network, createTimelineTreeElement.call(this, WebInspector.UIString("Network Requests"), WebInspector.TimelineSidebarPanel.NetworkIconStyleClass, WebInspector.TimelineRecord.Type.Network));
119 this._timelineTreeElementMap.set(WebInspector.TimelineRecord.Type.Layout, createTimelineTreeElement.call(this, WebInspector.UIString("Layout & Rendering"), WebInspector.TimelineSidebarPanel.ColorsIconStyleClass, WebInspector.TimelineRecord.Type.Layout));
120 this._timelineTreeElementMap.set(WebInspector.TimelineRecord.Type.Script, createTimelineTreeElement.call(this, WebInspector.UIString("JavaScript & Events"), WebInspector.TimelineSidebarPanel.ScriptIconStyleClass, WebInspector.TimelineRecord.Type.Script));
125 this._timelineOverviewTreeElement = new WebInspector.GeneralTreeElement(WebInspector.TimelineSidebarPanel.StopwatchIconStyleClass, WebInspector.UIString("Timelines"), null, WebInspector.timelineManager.activeRecording);
133 WebInspector.TimelineSidebarPanel.HiddenStyleClassName = "hidden";
134 WebInspector.TimelineSidebarPanel.StatusBarStyleClass = "status-bar";
135 WebInspector.TimelineSidebarPanel.RecordGlyphStyleClass = "record-glyph";
136 WebInspector.TimelineSidebarPanel.RecordGlyphRecordingStyleClass = "recording";
137 WebInspector.TimelineSidebarPanel.RecordGlyphRecordingForcedStyleClass = "forced";
138 WebInspector.TimelineSidebarPanel.RecordStatusStyleClass = "record-status";
139 WebInspector.TimelineSidebarPanel.TitleBarStyleClass = "title-bar";
140 WebInspector.TimelineSidebarPanel.TimelinesTitleBarStyleClass = "timelines";
141 WebInspector.TimelineSidebarPanel.TimelineEventsTitleBarStyleClass = "timeline-events";
142 WebInspector.TimelineSidebarPanel.TimelinesContentContainerStyleClass = "timelines-content";
143 WebInspector.TimelineSidebarPanel.CloseButtonStyleClass = "close-button";
144 WebInspector.TimelineSidebarPanel.LargeIconStyleClass = "large";
145 WebInspector.TimelineSidebarPanel.StopwatchIconStyleClass = "stopwatch-icon";
146 WebInspector.TimelineSidebarPanel.NetworkIconStyleClass = "network-icon";
147 WebInspector.TimelineSidebarPanel.ColorsIconStyleClass = "colors-icon";
148 WebInspector.TimelineSidebarPanel.ScriptIconStyleClass = "script-icon";
149 WebInspector.TimelineSidebarPanel.TimelineContentViewShowingStyleClass = "timeline-content-view-showing";
150 WebInspector.TimelineSidebarPanel.ShowingTimelineContentViewCookieKey = "timeline-sidebar-panel-showing-timeline-content-view";
151 WebInspector.TimelineSidebarPanel.SelectedTimelineViewIdentifierCookieKey = "timeline-sidebar-panel-selected-timeline-view-identifier";
152 WebInspector.TimelineSidebarPanel.OverviewTimelineIdentifierCookieValue = "overview";
154 WebInspector.TimelineSidebarPanel.prototype = {
155 constructor: WebInspector.TimelineSidebarPanel,
292 cookie[WebInspector.TimelineSidebarPanel.SelectedTimelineViewIdentifierCookieKey] = selectedTreeElement.representedObject;
294 cookie[WebInspector.TimelineSidebarPanel.SelectedTimelineViewIdentifierCookieKey] = WebInspector.TimelineSidebarPanel.OverviewTimelineIdentifierCookieValue;
304 // This matches the delayed work in the WebInspector.TimelineSidebarPanel constructor.
312 var selectedTimelineViewIdentifier = cookie[WebInspector.TimelineSidebarPanel.SelectedTimelineViewIdentifierCookieKey];
313 if (selectedTimelineViewIdentifier === WebInspector.TimelineSidebarPanel.OverviewTimelineIdentifierCookieValue)
332 this.element.classList.add(WebInspector.TimelineSidebarPanel.TimelineContentViewShowingStyleClass);
334 this.element.classList.remove(WebInspector.TimelineSidebarPanel.TimelineContentViewShowingStyleClass);
340 this._recordGlyphElement.classList.add(WebInspector.TimelineSidebarPanel.RecordGlyphRecordingStyleClass);
346 this._recordGlyphElement.classList.remove(WebInspector.TimelineSidebarPanel.RecordGlyphRecordingStyleClass);
351 this._recordGlyphElement.classList.remove(WebInspector.TimelineSidebarPanel.RecordGlyphRecordingForcedStyleClass);
361 this._recordGlyphElement.classList.remove(WebInspector.TimelineSidebarPanel.RecordGlyphRecordingForcedStyleClass);
372 this._recordGlyphElement.classList.add(WebInspector.TimelineSidebarPanel.RecordGlyphRecordingForcedStyleClass);
386 this._statusBarElement.classList.toggle(WebInspector.TimelineSidebarPanel.HiddenStyleClassName, shouldShowReplayInterface);
387 this._navigationBar.element.classList.toggle(WebInspector.TimelineSidebarPanel.HiddenStyleClassName, !shouldShowReplayInterface);