HomeSort by relevance Sort by last modified time
    Searched refs:WebInspector (Results 201 - 225 of 326) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
PaintProfilerView.js 34 * @extends {WebInspector.HBox}
36 WebInspector.PaintProfilerView = function(showImageCallback)
38 WebInspector.HBox.call(this);
42 this._progressBanner.textContent = WebInspector.UIString("Profiling\u2026");
43 this._pieChart = new WebInspector.PieChart(55, this._formatPieChartTime.bind(this));
50 this._selectionWindow = new WebInspector.OverviewGrid.Window(this._canvasContainer);
51 this._selectionWindow.addEventListener(WebInspector.OverviewGrid.Events.WindowChanged, this._onWindowChanged, this);
61 WebInspector.PaintProfilerView.Events = {
65 WebInspector.PaintProfilerView.prototype = {
72 * @param {?WebInspector.PaintProfilerSnapshot} snapsho
    [all...]
TimelineOverviewPane.js 33 * @extends {WebInspector.VBox}
34 * @param {!WebInspector.TimelineModel} model
35 * @param {!WebInspector.TimelineUIUtils} uiUtils
37 WebInspector.TimelineOverviewPane = function(model, uiUtils)
39 WebInspector.VBox.call(this);
44 this._overviewCalculator = new WebInspector.TimelineOverviewCalculator();
46 this._overviewGrid = new WebInspector.OverviewGrid("timeline");
49 model.addEventListener(WebInspector.TimelineModel.Events.RecordsCleared, this._reset, this);
50 this._overviewGrid.addEventListener(WebInspector.OverviewGrid.Events.WindowChanged, this._onWindowChanged, this);
54 WebInspector.TimelineOverviewPane.Events =
    [all...]
TimelineJSProfile.js 6 WebInspector.TimelineJSProfileProcessor = { };
9 * @param {!WebInspector.TimelineModelImpl} timelineModel
12 WebInspector.TimelineJSProfileProcessor.mergeJSProfileIntoTimeline = function(timelineModel, jsProfile)
16 var jsProfileModel = new WebInspector.CPUProfileDataModel(jsProfile);
22 * @param {!WebInspector.TimelineModel.Record} record
26 if (record.type() !== WebInspector.TimelineModel.RecordType.FunctionCall &&
27 record.type() !== WebInspector.TimelineModel.RecordType.EvaluateScript)
49 record = new WebInspector.TimelineModel.RecordImpl(timelineModel, event, record);
95 * @param {!WebInspector.TracingTimelineModel} timelineModel
97 * @return {!Array.<!WebInspector.TracingModel.Event>
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
FileSystemModel.js 33 * @extends {WebInspector.SDKObject}
34 * @param {!WebInspector.Target} target
36 WebInspector.FileSystemModel = function(target)
38 WebInspector.SDKObject.call(this, target);
42 target.resourceTreeModel.addEventListener(WebInspector.ResourceTreeModel.EventTypes.SecurityOriginAdded, this._securityOriginAdded, this);
43 target.resourceTreeModel.addEventListener(WebInspector.ResourceTreeModel.EventTypes.SecurityOriginRemoved, this._securityOriginRemoved, this);
50 WebInspector.FileSystemModel.prototype = {
61 * @param {!WebInspector.Event} event
70 * @param {!WebInspector.Event} event
129 * @param {!WebInspector.FileSystemModel.FileSystem} fileSyste
    [all...]
DebuggerModel.js 33 * @extends {WebInspector.SDKModel}
34 * @param {!WebInspector.Target} target
36 WebInspector.DebuggerModel = function(target)
38 WebInspector.SDKModel.call(this, WebInspector.DebuggerModel, target);
40 target.registerDebuggerDispatcher(new WebInspector.DebuggerDispatcher(this));
43 /** @type {?WebInspector.DebuggerPausedDetails} */
45 /** @type {!Object.<string, !WebInspector.Script>} */
47 /** @type {!StringMap.<!Array.<!WebInspector.Script>>} */
50 /** @type {!WebInspector.Object} *
    [all...]
OverridesSupport.js 33 * @implements {WebInspector.TargetManager.Observer}
34 * @extends {WebInspector.Object}
37 WebInspector.OverridesSupport = function(responsiveDesignAvailable)
46 this._deviceMetricsThrottler = new WebInspector.Throttler(0);
50 this.settings._emulationEnabled = WebInspector.settings.createSetting("emulationEnabled", false);
52 this.settings.userAgent = WebInspector.settings.createSetting("userAgent", "");
54 this.settings.emulateResolution = WebInspector.settings.createSetting("emulateResolution", true);
55 this.settings.deviceWidth = WebInspector.settings.createSetting("deviceWidth", 360);
56 this.settings.deviceHeight = WebInspector.settings.createSetting("deviceHeight", 640);
57 this.settings.deviceScaleFactor = WebInspector.settings.createSetting("deviceScaleFactor", 0)
    [all...]
CSSStyleModel.js 33 * @extends {WebInspector.SDKModel}
34 * @param {!WebInspector.Target} target
36 WebInspector.CSSStyleModel = function(target)
38 WebInspector.SDKModel.call(this, WebInspector.CSSStyleModel, target);
42 this._styleLoader = new WebInspector.CSSStyleModel.ComputedStyleLoader(this);
43 this._domModel.addEventListener(WebInspector.DOMModel.Events.UndoRedoRequested, this._undoRedoRequested, this);
44 this._domModel.addEventListener(WebInspector.DOMModel.Events.UndoRedoCompleted, this._undoRedoCompleted, this);
45 target.resourceTreeModel.addEventListener(WebInspector.ResourceTreeModel.EventTypes.MainFrameNavigated, this._mainFrameNavigated, this);
46 target.registerCSSDispatcher(new WebInspector.CSSDispatcher(this))
    [all...]
NetworkManager.js 33 * @extends {WebInspector.SDKModel}
34 * @param {!WebInspector.Target} target
36 WebInspector.NetworkManager = function(target)
38 WebInspector.SDKModel.call(this, WebInspector.NetworkManager, target);
39 this._dispatcher = new WebInspector.NetworkDispatcher(this);
43 if (WebInspector.settings.cacheDisabled.get())
48 WebInspector.settings.cacheDisabled.addChangeListener(this._cacheDisabledSettingChanged, this);
51 WebInspector.NetworkManager.EventTypes = {
58 WebInspector.NetworkManager._MIMETypes =
    [all...]
LayerTreeModel.js 33 children: Array.<!WebInspector.TracingLayerPayload>,
43 WebInspector.TracingLayerPayload;
47 * @extends {WebInspector.SDKModel}
49 WebInspector.LayerTreeModel = function(target)
51 WebInspector.SDKModel.call(this, WebInspector.LayerTreeModel, target);
52 target.registerLayerTreeDispatcher(new WebInspector.LayerTreeDispatcher(this));
53 target.domModel.addEventListener(WebInspector.DOMModel.Events.DocumentUpdated, this._onDocumentUpdated, this);
54 /** @type {?WebInspector.LayerTreeBase} */
58 WebInspector.LayerTreeModel.Events =
    [all...]
ResourceTreeModel.js 33 * @extends {WebInspector.SDKModel}
34 * @param {!WebInspector.Target} target
36 WebInspector.ResourceTreeModel = function(target)
38 WebInspector.SDKModel.call(this, WebInspector.ResourceTreeModel, target);
40 target.networkManager.addEventListener(WebInspector.NetworkManager.EventTypes.RequestFinished, this._onRequestFinished, this);
41 target.networkManager.addEventListener(WebInspector.NetworkManager.EventTypes.RequestUpdateDropped, this._onRequestUpdateDropped, this);
43 target.consoleModel.addEventListener(WebInspector.ConsoleModel.Events.MessageAdded, this._consoleMessageAdded, this);
44 target.consoleModel.addEventListener(WebInspector.ConsoleModel.Events.ConsoleCleared, this._consoleCleared, this);
51 target.registerPageDispatcher(new WebInspector.PageDispatcher(this))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
TextRange.js 38 WebInspector.TextRange = function(startLine, startColumn, endLine, endColumn)
49 * @return {!WebInspector.TextRange}
51 WebInspector.TextRange.createFromLocation = function(line, column)
53 return new WebInspector.TextRange(line, column, line, column);
58 * @return {!WebInspector.TextRange}
60 WebInspector.TextRange.fromObject = function(serializedTextRange)
62 return new WebInspector.TextRange(serializedTextRange.startLine, serializedTextRange.startColumn, serializedTextRange.endLine, serializedTextRange.endColumn);
66 * @param {!WebInspector.TextRange} range1
67 * @param {!WebInspector.TextRange} range2
70 WebInspector.TextRange.comparator = function(range1, range2
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/layers/
LayerTreeOutline.js 33 * @extends {WebInspector.Object}
36 WebInspector.LayerTreeOutline = function(treeOutline)
38 WebInspector.Object.call(this);
49 WebInspector.LayerTreeOutline.Events = {
54 WebInspector.LayerTreeOutline.prototype = {
56 * @param {?WebInspector.Layer} layer
69 * @param {?WebInspector.Layer} layer
84 * @param {?WebInspector.LayerTreeBase} layerTree
91 * @param {!WebInspector.Layer} layer
92 * @this {WebInspector.LayerTreeOutline
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
FileBasedSearchResultsPane.js 7 * @extends {WebInspector.SearchResultsPane}
8 * @param {!WebInspector.ProjectSearchConfig} searchConfig
10 WebInspector.FileBasedSearchResultsPane = function(searchConfig)
12 WebInspector.SearchResultsPane.call(this, searchConfig);
26 WebInspector.FileBasedSearchResultsPane.matchesExpandedByDefaultCount = 20;
27 WebInspector.FileBasedSearchResultsPane.fileMatchesShownAtOnce = 20;
29 WebInspector.FileBasedSearchResultsPane.prototype = {
31 * @param {!WebInspector.FileBasedSearchResult} searchResult
43 * @param {!WebInspector.FileBasedSearchResult} searchResult
47 var fileTreeElement = new WebInspector.FileBasedSearchResultsPane.FileTreeElement(this._searchConfig, searchResult)
    [all...]
TabbedEditorContainer.js 32 WebInspector.TabbedEditorContainerDelegate = function() { }
34 WebInspector.TabbedEditorContainerDelegate.prototype = {
36 * @param {!WebInspector.UISourceCode} uiSourceCode
37 * @return {!WebInspector.SourceFrame}
44 * @extends {WebInspector.Object}
45 * @param {!WebInspector.TabbedEditorContainerDelegate} delegate
49 WebInspector.TabbedEditorContainer = function(delegate, settingName, placeholderText)
51 WebInspector.Object.call(this);
54 this._tabbedPane = new WebInspector.TabbedPane();
56 this._tabbedPane.setTabDelegate(new WebInspector.EditorContainerTabDelegate(this))
    [all...]
EditingLocationHistoryManager.js 33 * @param {!WebInspector.SourcesView} sourcesView
34 * @param {!function():?WebInspector.SourceFrame} currentSourceFrameCallback
36 WebInspector.EditingLocationHistoryManager = function(sourcesView, currentSourceFrameCallback)
39 this._historyManager = new WebInspector.SimpleHistoryManager(WebInspector.EditingLocationHistoryManager.HistoryDepth);
43 WebInspector.EditingLocationHistoryManager.HistoryDepth = 20;
45 WebInspector.EditingLocationHistoryManager.prototype = {
47 * @param {!WebInspector.UISourceCodeFrame} sourceFrame
51 sourceFrame.addEventListener(WebInspector.SourceFrame.Events.JumpHappened, this._onJumpHappened.bind(this));
55 * @param {!WebInspector.Event} even
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/promises/
PromisesPanel.js 7 * @extends {WebInspector.VBox}
9 WebInspector.PromisesPanel = function()
11 WebInspector.VBox.call(this);
17 enableButton.textContent = WebInspector.UIString("Enable Promises tracking");
20 disableButton.textContent = WebInspector.UIString("Disable Promises tracking");
23 refreshButton.textContent = WebInspector.UIString("Refresh");
26 clearButton.textContent = WebInspector.UIString("Clear");
29 this._dataGridContainer = new WebInspector.VBox();
32 { id: "promiseId", title: WebInspector.UIString("Promise ID"), disclosure: true },
33 { id: "status", title: WebInspector.UIString("Status") }
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/toolbox/
MediaQueryInspector.js 7 * @extends {WebInspector.View}
8 * @implements {WebInspector.TargetManager.Observer}
10 WebInspector.MediaQueryInspector = function()
12 WebInspector.View.call(this);
16 this._mediaThrottler = new WebInspector.Throttler(0);
22 WebInspector.targetManager.observeTargets(this);
24 WebInspector.zoomManager.addEventListener(WebInspector.ZoomManager.Events.ZoomChanged, this._renderMediaQueries.bind(this), this);
30 WebInspector.MediaQueryInspector.Section = {
36 WebInspector.MediaQueryInspector.Events =
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/elements/
ElementsPanel.js 33 * @implements {WebInspector.Searchable}
34 * @implements {WebInspector.TargetManager.Observer}
35 * @extends {WebInspector.Panel}
37 WebInspector.ElementsPanel = function()
39 WebInspector.Panel.call(this, "elements");
43 this._splitView = new WebInspector.SplitView(true, true, "elementsPanelSplitViewState", 325, 325);
44 this._splitView.addEventListener(WebInspector.SplitView.Events.SidebarSizeChanged, this._updateTreeOutlineVisibleWidth.bind(this));
47 this._searchableView = new WebInspector.SearchableView(this);
56 if (!WebInspector.settings.domWordWrap.get())
58 WebInspector.settings.domWordWrap.addChangeListener(this._domWordWrapSettingChanged.bind(this))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/
CPUProfileDataGrid.js 28 * @extends {WebInspector.DataGridNode}
30 * @param {!WebInspector.TopDownProfileDataGridTree} owningTree
33 WebInspector.ProfileDataGridNode = function(profileNode, owningTree, hasChildren)
37 WebInspector.DataGridNode.call(this, null, hasChildren);
47 this.functionName = WebInspector.CPUProfileDataModel.beautifyFunctionName(profileNode.functionName);
52 WebInspector.ProfileDataGridNode.prototype = {
60 var cell = this._createValueCell(columnIdentifier) || WebInspector.DataGridNode.prototype.createCell.call(this, columnIdentifier);
119 return WebInspector.UIString("%.1f\u2009ms", time);
123 return WebInspector.UIString("%.2f\u2009%", value);
130 marker.title = WebInspector.UIString("Not optimized: %s", this._deoptReason)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/workspace/
UISourceCode.js 34 * @extends {WebInspector.Object}
35 * @implements {WebInspector.ContentProvider}
36 * @param {!WebInspector.Project} project
41 * @param {!WebInspector.ResourceType} contentType
43 WebInspector.UISourceCode = function(project, parentPath, name, originURL, url, contentType)
54 /** @type {!Array.<!WebInspector.Revision>} */
61 WebInspector.UISourceCode.Events = {
69 WebInspector.UISourceCode.prototype = {
116 var displayName = this.name() || WebInspector.UIString("(index)");
162 * @param {!WebInspector.ResourceType=} newContentTyp
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
Tests.js 191 this.assertEquals(WebInspector.panels[panelName], WebInspector.inspectorView.currentPanel());
229 * @param {!WebInspector.Throttler} throttler
291 this.assertEquals(WebInspector.panels.elements, WebInspector.inspectorView.currentPanel(), "Elements panel should be current one.");
293 WebInspector.debuggerModel.addEventListener(WebInspector.DebuggerModel.Events.GlobalObjectCleared, waitUntilScriptIsParsed);
300 WebInspector.debuggerModel.removeEventListener(WebInspector.DebuggerModel.Events.GlobalObjectCleared, waitUntilScriptIsParsed);
392 if (WebInspector.debuggerModel.debuggerPausedDetails
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/console/
ConsoleViewMessage.js 33 * @implements {WebInspector.ViewportElement}
34 * @param {!WebInspector.ConsoleMessage} consoleMessage
35 * @param {?WebInspector.Linkifier} linkifier
38 WebInspector.ConsoleViewMessage = function(consoleMessage, linkifier, nestingLevel)
46 /** @type {!Array.<!WebInspector.DataGrid>} */
48 /** @type {!Map.<!WebInspector.DataGrid, ?Element>} */
51 /** @type {!Object.<string, function(!WebInspector.RemoteObject, !Element, boolean=)>} */
62 WebInspector.ConsoleViewMessage.prototype = {
64 * @return {?WebInspector.Target}
111 if (this._message.type === WebInspector.ConsoleMessage.MessageType.Table)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
Context.js 8 WebInspector.Context = function()
17 WebInspector.Context.Events = {
21 WebInspector.Context.prototype = {
50 dispatcher.dispatchEventToListeners(WebInspector.Context.Events.FlavorChanged, flavorValue);
55 * @param {function(!WebInspector.Event)} listener
62 dispatcher = new WebInspector.Object();
65 dispatcher.addEventListener(WebInspector.Context.Events.FlavorChanged, listener, thisObject);
70 * @param {function(!WebInspector.Event)} listener
78 dispatcher.removeEventListener(WebInspector.Context.Events.FlavorChanged, listener, thisObject);
79 if (!dispatcher.hasEventListeners(WebInspector.Context.Events.FlavorChanged)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
OverviewGrid.js 35 WebInspector.OverviewGrid = function(prefix)
40 this._grid = new WebInspector.TimelineGrid();
46 this._window = new WebInspector.OverviewGrid.Window(this.element, this._grid.dividersLabelBarElement);
49 WebInspector.OverviewGrid.prototype = {
59 * @param {!WebInspector.TimelineGrid.Calculator} calculator
120 * @param {function(!WebInspector.Event)} listener
147 WebInspector.OverviewGrid.MinSelectableSize = 14;
149 WebInspector.OverviewGrid.WindowScrollSpeedFactor = .3;
151 WebInspector.OverviewGrid.ResizerOffset = 3.5; // half pixel because offset values are not rounded but ceiled
155 * @extends {WebInspector.Object
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/resources/
ApplicationCacheItemsView.js 28 * @extends {WebInspector.VBox}
30 WebInspector.ApplicationCacheItemsView = function(model, frameId)
32 WebInspector.VBox.call(this);
40 this.deleteButton = new WebInspector.StatusBarButton(WebInspector.UIString("Delete"), "delete-storage-status-bar-item");
59 this._emptyView = new WebInspector.EmptyView(WebInspector.UIString("No Application Cache information available."));
74 WebInspector.ApplicationCacheItemsView.prototype = {
142 this.connectivityMessage.textContent = WebInspector.UIString("Online");
145 this.connectivityMessage.textContent = WebInspector.UIString("Offline")
    [all...]

Completed in 601 milliseconds

1 2 3 4 5 6 7 891011>>