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

1 2 3 4 5 6 7 891011>>

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/network/
RequestTimingView.js 33 * @extends {WebInspector.VBox}
34 * @param {!WebInspector.NetworkRequest} request
36 WebInspector.RequestTimingView = function(request)
38 WebInspector.VBox.call(this);
44 WebInspector.RequestTimingView.prototype = {
47 this._request.addEventListener(WebInspector.NetworkRequest.Events.TimingChanged, this._refresh, this);
48 this._request.addEventListener(WebInspector.NetworkRequest.Events.FinishedLoading, this._refresh, this);
52 this._emptyView = new WebInspector.EmptyView(WebInspector.UIString("This request has no detailed timing info."));
69 this._request.removeEventListener(WebInspector.NetworkRequest.Events.TimingChanged, this._refresh, this)
    [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/sources/
JavaScriptSourceFrame.js 33 * @extends {WebInspector.UISourceCodeFrame}
34 * @param {!WebInspector.SourcesPanel} scriptsPanel
35 * @param {!WebInspector.UISourceCode} uiSourceCode
37 WebInspector.JavaScriptSourceFrame = function(scriptsPanel, uiSourceCode)
40 this._breakpointManager = WebInspector.breakpointManager;
43 WebInspector.UISourceCodeFrame.call(this, uiSourceCode);
44 if (uiSourceCode.project().type() === WebInspector.projectTypes.Debugger)
47 this._popoverHelper = new WebInspector.ObjectPopoverHelper(this.textEditor.element,
52 this.textEditor.addEventListener(WebInspector.TextEditor.Events.GutterClick, this._handleGutterClick.bind(this), this);
54 this._breakpointManager.addEventListener(WebInspector.BreakpointManager.Events.BreakpointAdded, this._breakpointAdded, this)
    [all...]
NavigatorView.js 31 * @extends {WebInspector.VBox}
33 WebInspector.NavigatorView = function()
35 WebInspector.VBox.call(this);
41 this._scriptsTree = new WebInspector.NavigatorTreeOutline(scriptsTreeElement);
45 /** @type {!Map.<!WebInspector.UISourceCode, !WebInspector.NavigatorUISourceCodeTreeNode>} */
47 /** @type {!Map.<!WebInspector.NavigatorTreeNode, !StringMap.<!WebInspector.NavigatorFolderTreeNode>>} */
50 this._rootNode = new WebInspector.NavigatorRootTreeNode(this);
56 WebInspector.NavigatorView.Events =
    [all...]
RevisionHistoryView.js 33 * @extends {WebInspector.VBox}
35 WebInspector.RevisionHistoryView = function()
37 WebInspector.VBox.call(this);
47 * @param {!WebInspector.UISourceCode} uiSourceCode
48 * @this {WebInspector.RevisionHistoryView}
56 WebInspector.workspace.uiSourceCodes().forEach(populateRevisions.bind(this));
57 WebInspector.workspace.addEventListener(WebInspector.Workspace.Events.UISourceCodeContentCommitted, this._revisionAdded, this);
58 WebInspector.workspace.addEventListener(WebInspector.Workspace.Events.UISourceCodeRemoved, this._uiSourceCodeRemoved, this)
    [all...]
SourcesPanel.js 29 * @extends {WebInspector.Panel}
30 * @implements {WebInspector.ContextMenu.Provider}
31 * @implements {WebInspector.TargetManager.Observer}
32 * @param {!WebInspector.Workspace=} workspaceForTest
34 WebInspector.SourcesPanel = function(workspaceForTest)
36 WebInspector.Panel.call(this, "sources");
38 new WebInspector.UpgradeFileSystemDropTarget(this.element);
40 this._workspace = workspaceForTest || WebInspector.workspace;
46 this._splitView = new WebInspector.SplitView(true, true, "sourcesPanelSplitViewState", initialDebugSidebarWidth);
52 this.editorView = new WebInspector.SplitView(true, false, "sourcesPanelNavigatorSplitViewState", initialNavigatorWidth)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
TimelineUIUtils.js 35 WebInspector.TimelineUIUtils = function() { }
37 WebInspector.TimelineUIUtils.prototype = {
39 * @param {!WebInspector.TimelineModel.Record} record
47 * @param {!WebInspector.TimelineModel.Record} record
63 * @param {!WebInspector.TimelineModel.Record} record
71 * @param {!WebInspector.TimelineModel.Record} record
79 * @param {!WebInspector.TimelineModel.Record} record
87 * @param {!WebInspector.TimelineModel.Record} record
95 * @param {!WebInspector.TimelineModel.Record} record
96 * @return {!WebInspector.TimelineCategory
    [all...]
TracingTimelineUIUtils.js 7 * @extends {WebInspector.TimelineUIUtils}
9 WebInspector.TracingTimelineUIUtils = function()
11 WebInspector.TimelineUIUtils.call(this);
14 WebInspector.TracingTimelineUIUtils.prototype = {
16 * @param {!WebInspector.TimelineModel.Record} record
21 return record.type() === WebInspector.TracingTimelineModel.RecordType.BeginFrame;
25 * @param {!WebInspector.TimelineModel.Record} record
30 return record.type() === WebInspector.TracingTimelineModel.RecordType.Program;
39 return !!WebInspector.TracingTimelineUIUtils._coalescableRecordTypes[recordType];
43 * @param {!WebInspector.TimelineModel.Record} recor
    [all...]
TimelineMemoryOverview.js 33 * @extends {WebInspector.TimelineOverviewBase}
34 * @param {!WebInspector.TimelineModel} model
35 * @param {!WebInspector.TimelineUIUtils} uiUtils
37 WebInspector.TimelineMemoryOverview = function(model, uiUtils)
39 WebInspector.TimelineOverviewBase.call(this, model);
46 WebInspector.TimelineMemoryOverview.prototype = {
70 * @param {!WebInspector.TimelineModel.Record} record
92 * @param {!WebInspector.TimelineModel.Record} record
139 this._heapSizeLabel.textContent = WebInspector.UIString("%s \u2013 %s", Number.bytesToString(minUsedHeapSize), Number.bytesToString(maxUsedHeapSize));
142 __proto__: WebInspector.TimelineOverviewBase.prototyp
    [all...]
CountersGraph.js 33 * @extends {WebInspector.SplitView}
35 * @param {!WebInspector.TimelineModeViewDelegate} delegate
36 * @param {!WebInspector.TimelineModel} model
38 WebInspector.CountersGraph = function(title, delegate, model)
40 WebInspector.SplitView.call(this, true, false);
46 this._calculator = new WebInspector.TimelineCalculator(this._model);
50 this._canvasView = new WebInspector.VBoxWithResizeCallback(this._resize.bind(this));
62 this._timelineGrid = new WebInspector.TimelineGrid();
71 WebInspector.CountersGraph.prototype = {
82 * @return {!WebInspector.CountersGraph.Counter
    [all...]
TracingModel.js 10 WebInspector.TracingModel = function()
18 WebInspector.TracingModel.Phase = {
38 WebInspector.TracingModel.MetadataEvent = {
45 WebInspector.TracingModel.DevToolsMetadataEventCategory = "disabled-by-default-devtools.timeline";
47 WebInspector.TracingModel.ConsoleEventCategory = "blink.console";
49 WebInspector.TracingModel.FrameLifecycleEventCategory = "cc,devtools";
51 WebInspector.TracingModel.DevToolsMetadataEvent = {
60 WebInspector.TracingModel.isAsyncPhase = function(phase)
62 return phase === WebInspector.TracingModel.Phase.AsyncBegin || phase === WebInspector.TracingModel.Phase.AsyncEnd |
    [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/components/
ObjectPopoverHelper.js 33 * @extends {WebInspector.PopoverHelper}
36 * @param {function(!Element, function(!WebInspector.RemoteObject, boolean, !Element=):undefined, string):undefined} queryObject
40 WebInspector.ObjectPopoverHelper = function(panelElement, getAnchor, queryObject, onHide, disableOnClick)
42 WebInspector.PopoverHelper.call(this, panelElement, getAnchor, this._showObjectPopover.bind(this), this._onHideObjectPopover.bind(this), disableOnClick);
49 WebInspector.ObjectPopoverHelper.prototype = {
51 * @param {function(!WebInspector.RemoteObject):string} formatter
60 * @param {!WebInspector.Popover} popover
65 * @param {!WebInspector.Target} target
68 * @param {?WebInspector.DebuggerModel.FunctionDetails} response
69 * @this {WebInspector.ObjectPopoverHelper
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
RemoteObject.js 32 * This may not be an interface due to "instanceof WebInspector.RemoteObject" checks in the code.
36 WebInspector.RemoteObject = function() { }
38 WebInspector.RemoteObject.prototype = {
72 * @param {function(?Array.<!WebInspector.RemoteObjectProperty>, ?Array.<!WebInspector.RemoteObjectProperty>)} callback
81 * @param {function(?Array.<!WebInspector.RemoteObjectProperty>, ?Array.<!WebInspector.RemoteObjectProperty>)} callback
100 * @param {function(?WebInspector.RemoteObject, boolean=)=} callback
118 * @return {!WebInspector.Target}
134 * @param {function(?WebInspector.DebuggerModel.FunctionDetails)} callbac
    [all...]
SourceMap.js 69 WebInspector.SourceMap = function(sourceMappingURL, payload)
71 if (!WebInspector.SourceMap.prototype._base64Map) {
73 WebInspector.SourceMap.prototype._base64Map = {};
75 WebInspector.SourceMap.prototype._base64Map[base64Digits.charAt(i)] = i;
89 * @param {function(?WebInspector.SourceMap)} callback
90 * @this {WebInspector.SourceMap}
92 WebInspector.SourceMap.load = function(sourceMapURL, compiledURL, callback)
94 var resourceTreeModel = WebInspector.resourceTreeModel;
98 resourceTreeModel.addEventListener(WebInspector.ResourceTreeModel.EventTypes.CachedResourcesLoaded, cachedResourcesLoaded);
102 resourceTreeModel.removeEventListener(WebInspector.ResourceTreeModel.EventTypes.CachedResourcesLoaded, cachedResourcesLoaded)
    [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...]
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...]
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...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
ResourceType.js 38 WebInspector.ResourceType = function(name, title, categoryTitle, color, isTextType)
47 WebInspector.ResourceType.prototype = {
101 if (this === WebInspector.resourceTypes.Document)
103 if (this === WebInspector.resourceTypes.Script)
105 if (this === WebInspector.resourceTypes.Stylesheet)
113 * @enum {!WebInspector.ResourceType}
115 WebInspector.resourceTypes = {
116 Document: new WebInspector.ResourceType("document", "Document", "Documents", "rgb(47,102,236)", true),
117 Stylesheet: new WebInspector.ResourceType("stylesheet", "Stylesheet", "Stylesheets", "rgb(157,231,119)", true),
118 Image: new WebInspector.ResourceType("image", "Image", "Images", "rgb(164,60,255)", false)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/source_frame/
SourceFrame.js 32 * @extends {WebInspector.VBox}
34 * @implements {WebInspector.Replaceable}
35 * @param {!WebInspector.ContentProvider} contentProvider
37 WebInspector.SourceFrame = function(contentProvider)
39 WebInspector.VBox.call(this);
45 var textEditorDelegate = new WebInspector.TextEditorDelegateForSourceFrame(this);
47 this._textEditor = new WebInspector.CodeMirrorTextEditor(this._url, textEditorDelegate);
60 this._sourcePosition = new WebInspector.StatusBarText("", "source-frame-cursor-position");
62 this._errorPopoverHelper = new WebInspector.PopoverHelper(this.element, this._getErrorAnchor.bind(this), this._showErrorPopover.bind(this));
71 WebInspector.SourceFrame.createSearchRegex = function(query, modifiers
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
ViewportDataGrid.js 7 * @extends {WebInspector.DataGrid}
8 * @param {!Array.<!WebInspector.DataGrid.ColumnDescriptor>} columnsArray
9 * @param {function(!WebInspector.DataGridNode, string, string, string)=} editCallback
10 * @param {function(!WebInspector.DataGridNode)=} deleteCallback
12 * @param {function(!WebInspector.ContextMenu, !WebInspector.DataGridNode)=} contextMenuCallback
14 WebInspector.ViewportDataGrid = function(columnsArray, editCallback, deleteCallback, refreshCallback, contextMenuCallback)
16 WebInspector.DataGrid.call(this, columnsArray, editCallback, deleteCallback, refreshCallback, contextMenuCallback);
19 /** @type {!Array.<!WebInspector.ViewportDataGridNode>} */
41 this.setRootNode(new WebInspector.ViewportDataGridNode())
    [all...]
TextEditor.js 35 WebInspector.TextEditor = function() { };
37 WebInspector.TextEditor.Events = {
42 WebInspector.TextEditor.GutterClickEventData;
44 WebInspector.TextEditor.prototype = {
72 * @return {?WebInspector.TextRange}
104 * @param {!WebInspector.TextRange} range
155 * @param {?WebInspector.TextRange} range
174 * @param {!WebInspector.TextEditor} textEditor
185 * @param {!WebInspector.TextRange} range
187 * @return {!WebInspector.TextRange
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/documentation/
DocumentationCatalog.js 8 WebInspector.DocumentationCatalog = function()
10 /** @type {!StringMap.<!Array.<!WebInspector.DocumentationCatalog.ItemDescriptor>>} */
12 this._loader = new WebInspector.DocumentationCatalog.Loader(this);
16 * @return {!WebInspector.DocumentationCatalog}
18 WebInspector.DocumentationCatalog.instance = function()
20 if (!WebInspector.DocumentationCatalog._instance)
21 WebInspector.DocumentationCatalog._instance = new WebInspector.DocumentationCatalog();
22 return WebInspector.DocumentationCatalog._instance;
31 WebInspector.DocumentationCatalog.ItemDescriptor = function(url, name, searchTerm
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/main/
Main.js 34 * @implements {WebInspector.Console.UIDelegate}
36 WebInspector.Main = function()
39 WebInspector.console.setUIDelegate(this);
42 * @this {WebInspector.Main}
52 WebInspector.Main.prototype = {
55 WebInspector.Revealer.reveal(WebInspector.console);
60 var extensions = self.runtime.extensions(WebInspector.StatusBarItem.Provider);
77 WebInspector.inspectorView.appendToLeftToolbar(item);
82 WebInspector.inspectorView.appendToRightToolbar(item)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/bindings/
TempFile.js 37 * @param {!function(?WebInspector.TempFile)} callback
39 WebInspector.TempFile = function(dirPath, name, callback)
46 * @this {WebInspector.TempFile}
55 * @this {WebInspector.TempFile}
64 * @this {WebInspector.TempFile}
74 * @this {WebInspector.TempFile}
79 * @this {WebInspector.TempFile}
91 WebInspector.console.error("Failed to truncate temp file " + e.code + " : " + e.message);
107 WebInspector.console.error("Failed to create temp file " + e.code + " : " + e.message);
112 * @this {WebInspector.TempFile
    [all...]

Completed in 1920 milliseconds

1 2 3 4 5 6 7 891011>>