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

1 2 3 4 5 6 78 91011>>

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
DOMBreakpointsSidebarPane.js 33 * @extends {WebInspector.NativeBreakpointsSidebarPane}
35 WebInspector.DOMBreakpointsSidebarPane = function()
37 WebInspector.NativeBreakpointsSidebarPane.call(this, WebInspector.UIString("DOM Breakpoints"));
47 this._breakpointTypeLabels[this._breakpointTypes.SubtreeModified] = WebInspector.UIString("Subtree Modified");
48 this._breakpointTypeLabels[this._breakpointTypes.AttributeModified] = WebInspector.UIString("Attribute Modified");
49 this._breakpointTypeLabels[this._breakpointTypes.NodeRemoved] = WebInspector.UIString("Node Removed");
52 this._contextMenuLabels[this._breakpointTypes.SubtreeModified] = WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Subtree modifications" : "Subtree Modifications");
53 this._contextMenuLabels[this._breakpointTypes.AttributeModified] = WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Attributes modifications" : "Attributes Modifica (…)
    [all...]
ObjectPropertiesSection.js 29 * @extends {WebInspector.PropertiesSection}
30 * @param {!WebInspector.RemoteObject} object
35 * @param {!Array.<!WebInspector.RemoteObjectProperty>=} extraProperties
36 * @param {function(new:TreeElement, !WebInspector.RemoteObjectProperty)=} treeElementConstructor
38 WebInspector.ObjectPropertiesSection = function(object, title, subtitle, emptyPlaceholder, ignoreHasOwnProperty, extraProperties, treeElementConstructor)
44 this.treeElementConstructor = treeElementConstructor || WebInspector.ObjectPropertyTreeElement;
48 WebInspector.PropertiesSection.call(this, title || "", subtitle);
51 WebInspector.ObjectPropertiesSection._arrayLoadThreshold = 100;
53 WebInspector.ObjectPropertiesSection.prototype = {
61 var contextMenu = new WebInspector.ContextMenu(event)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
TimelineModelImpl.js 7 * @extends {WebInspector.TimelineModel}
8 * @implements {WebInspector.TargetManager.Observer}
10 WebInspector.TimelineModelImpl = function()
12 WebInspector.TimelineModel.call(this);
13 /** @type {?WebInspector.Target} */
16 this._bindings = new WebInspector.TimelineModelImpl.InterRecordBindings();
20 WebInspector.targetManager.addModelListener(WebInspector.TimelineManager, WebInspector.TimelineManager.EventTypes.TimelineEventRecorded, this._onRecordAdded, this);
21 WebInspector.targetManager.addModelListener(WebInspector.TimelineManager, WebInspector.TimelineManager.EventTyp (…)
    [all...]
TimelineFrameModel.js 34 WebInspector.TimelineFrameModelBase = function()
39 WebInspector.TimelineFrameModelBase.prototype = {
48 * @return {!Array.<!WebInspector.TimelineFrame>}
58 * @return {!Array.<!WebInspector.TimelineFrame>}
64 * @param {!WebInspector.TimelineFrame} object
73 * @param {!WebInspector.TimelineFrame} object
153 * @param {!WebInspector.DeferredLayerTree} layerTree
172 this._lastFrame = new WebInspector.TimelineFrame(startTime, startTime - this._minimumRecordTime);
182 this._lastFrame = new WebInspector.TimelineFrame(startTime, startTime - this._minimumRecordTime);
186 * @param {!WebInspector.TimelineFrame} fram
    [all...]
TracingTimelineModel.js 7 * @param {!WebInspector.TracingManager} tracingManager
8 * @param {!WebInspector.TracingModel} tracingModel
9 * @param {!WebInspector.TimelineModel.Filter} recordFilter
10 * @extends {WebInspector.TimelineModel}
12 WebInspector.TracingTimelineModel = function(tracingManager, tracingModel, recordFilter)
14 WebInspector.TimelineModel.call(this);
19 this._tracingManager.addEventListener(WebInspector.TracingManager.Events.TracingStarted, this._onTracingStarted, this);
20 this._tracingManager.addEventListener(WebInspector.TracingManager.Events.EventsCollected, this._onEventsCollected, this);
21 this._tracingManager.addEventListener(WebInspector.TracingManager.Events.TracingComplete, this._onTracingComplete, this);
25 WebInspector.TracingTimelineModel.RecordType =
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
StatusBarButton.js 33 * @extends {WebInspector.Object}
36 WebInspector.StatusBarItem = function(elementType)
43 WebInspector.StatusBarItem.prototype = {
76 __proto__: WebInspector.Object.prototype
81 * @extends {WebInspector.StatusBarItem}
85 WebInspector.StatusBarCounter = function(counters, className)
87 WebInspector.StatusBarItem.call(this, "div");
103 WebInspector.StatusBarCounter.prototype = {
154 __proto__: WebInspector.StatusBarItem.prototype
159 * @extends {WebInspector.StatusBarItem
    [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...]
SplitView.js 31 * @extends {WebInspector.View}
39 WebInspector.SplitView = function(isVertical, secondIsSidebar, settingName, defaultSidebarWidth, defaultSidebarHeight, constraintsInDip)
41 WebInspector.View.call(this);
45 this._mainView = new WebInspector.VBox();
49 this._sidebarView = new WebInspector.VBox();
63 this._resizerWidget = new WebInspector.ResizerWidget();
65 this._resizerWidget.addEventListener(WebInspector.ResizerWidget.Events.ResizeStart, this._onResizeStart, this);
66 this._resizerWidget.addEventListener(WebInspector.ResizerWidget.Events.ResizeUpdate, this._onResizeUpdate, this);
67 this._resizerWidget.addEventListener(WebInspector.ResizerWidget.Events.ResizeEnd, this._onResizeEnd, this);
77 this._showMode = WebInspector.SplitView.ShowMode.Both
    [all...]
ActionRegistry.js 8 WebInspector.ActionRegistry = function()
15 WebInspector.ActionRegistry.prototype = {
18 self.runtime.extensions(WebInspector.ActionDelegate).forEach(registerExtension, this);
22 * @this {WebInspector.ActionRegistry}
35 * @param {!WebInspector.Context} context
59 return extension.instance().handleAction(WebInspector.context);
66 WebInspector.ActionDelegate = function()
70 WebInspector.ActionDelegate.prototype = {
72 * @param {!WebInspector.Context} context
78 /** @type {!WebInspector.ActionRegistry} *
    [all...]
ContextMenu.js 33 * @param {!WebInspector.ContextMenu} topLevelMenu
39 WebInspector.ContextMenuItem = function(topLevelMenu, type, label, disabled, checked)
50 WebInspector.ContextMenuItem.prototype = {
102 * @extends {WebInspector.ContextMenuItem}
103 * @param {!WebInspector.ContextMenu} topLevelMenu
107 WebInspector.ContextSubMenuItem = function(topLevelMenu, label, disabled)
109 WebInspector.ContextMenuItem.call(this, topLevelMenu, "subMenu", label, disabled);
110 /** @type {!Array.<!WebInspector.ContextMenuItem>} */
114 WebInspector.ContextSubMenuItem.prototype = {
119 * @return {!WebInspector.ContextMenuItem
    [all...]
RootView.js 7 * @extends {WebInspector.VBox}
9 WebInspector.RootView = function()
11 WebInspector.VBox.call(this);
18 WebInspector.RootView.prototype = {
28 var zoom = WebInspector.zoomManager.zoomFactor();
33 WebInspector.VBox.prototype.doResize.call(this);
36 __proto__: WebInspector.VBox.prototype
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/bindings/
StylesSourceMapping.js 33 * @implements {WebInspector.CSSSourceMapping}
34 * @param {!WebInspector.CSSStyleModel} cssModel
35 * @param {!WebInspector.Workspace} workspace
37 WebInspector.StylesSourceMapping = function(cssModel, workspace)
41 this._workspace.addEventListener(WebInspector.Workspace.Events.ProjectRemoved, this._projectRemoved, this);
42 this._workspace.addEventListener(WebInspector.Workspace.Events.UISourceCodeAdded, this._uiSourceCodeAddedToWorkspace, this);
43 this._workspace.addEventListener(WebInspector.Workspace.Events.UISourceCodeRemoved, this._uiSourceCodeRemoved, this);
45 cssModel.target().resourceTreeModel.addEventListener(WebInspector.ResourceTreeModel.EventTypes.MainFrameNavigated, this._mainFrameNavigated, this);
47 this._cssModel.addEventListener(WebInspector.CSSStyleModel.Events.StyleSheetChanged, this._styleSheetChanged, this);
51 WebInspector.StylesSourceMapping.MinorChangeUpdateTimeoutMs = 1000
    [all...]
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...]
DefaultScriptMapping.js 33 * @implements {WebInspector.DebuggerSourceMapping}
34 * @param {!WebInspector.DebuggerModel} debuggerModel
35 * @param {!WebInspector.Workspace} workspace
36 * @param {!WebInspector.DebuggerWorkspaceBinding} debuggerWorkspaceBinding
38 WebInspector.DefaultScriptMapping = function(debuggerModel, workspace, debuggerWorkspaceBinding)
43 this._projectId = WebInspector.DefaultScriptMapping.projectIdForTarget(debuggerModel.target());
44 this._projectDelegate = new WebInspector.DebuggerProjectDelegate(this._workspace, this._projectId, WebInspector.projectTypes.Debugger);
45 debuggerModel.addEventListener(WebInspector.DebuggerModel.Events.GlobalObjectCleared, this._debuggerReset, this);
49 WebInspector.DefaultScriptMapping.prototype =
    [all...]
ScriptSnippetModel.js 33 * @extends {WebInspector.Object}
34 * @implements {WebInspector.TargetManager.Observer}
35 * @param {!WebInspector.Workspace} workspace
37 WebInspector.ScriptSnippetModel = function(workspace)
40 /** @type {!Object.<string, !WebInspector.UISourceCode>} */
42 /** @type {!Map.<!WebInspector.UISourceCode, string>} */
45 /** @type {!Map.<!WebInspector.Target, !WebInspector.SnippetScriptMapping>} */
47 this._snippetStorage = new WebInspector.SnippetStorage("script", "Script snippet #");
48 this._lastSnippetEvaluationIndexSetting = WebInspector.settings.createSetting("lastSnippetEvaluationIndex", 0)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
CookieParser.js 41 WebInspector.CookieParser = function()
51 WebInspector.CookieParser.KeyValue = function(key, value, position)
58 WebInspector.CookieParser.prototype = {
60 * @return {!Array.<!WebInspector.Cookie>}
69 * @return {?Array.<!WebInspector.Cookie>}
80 this._addCookie(kv, WebInspector.Cookie.Type.Request);
89 * @return {?Array.<!WebInspector.Cookie>}
99 this._addCookie(kv, WebInspector.Cookie.Type.Response);
130 * @return {?WebInspector.CookieParser.KeyValue}
147 var result = new WebInspector.CookieParser.KeyValue(keyValueMatch[1], keyValueMatch[2] && keyValueMatch[2].trim(), this._origina (…)
    [all...]
PaintProfiler.js 33 * @param {!WebInspector.Target} target
36 WebInspector.PaintProfilerSnapshot = function(target, snapshotId)
43 * @param {!WebInspector.Target} target
45 * @param {function(?WebInspector.PaintProfilerSnapshot)} callback
47 WebInspector.PaintProfilerSnapshot.load = function(target, encodedPicture, callback)
49 var wrappedCallback = InspectorBackend.wrapClientCallback(callback, "LayerTreeAgent.loadSnapshot(): ", WebInspector.PaintProfilerSnapshot.bind(null, target));
54 * @param {!Array.<!WebInspector.RawPaintProfilerLogItem>} log
55 * @return {!Array.<!WebInspector.PaintProfilerLogItem>}
57 WebInspector.PaintProfilerSnapshot._processAnnotations = function(log)
94 result.push(new WebInspector.PaintProfilerLogItem(log[i], i, commentGroupStack.peekLast()))
    [all...]
ApplicationCacheModel.js 31 * @extends {WebInspector.SDKObject}
32 * @param {!WebInspector.Target} target
34 WebInspector.ApplicationCacheModel = function(target)
36 WebInspector.SDKObject.call(this, target);
38 target.registerApplicationCacheDispatcher(new WebInspector.ApplicationCacheDispatcher(this));
42 target.resourceTreeModel.addEventListener(WebInspector.ResourceTreeModel.EventTypes.FrameNavigated, this._frameNavigated, this);
43 target.resourceTreeModel.addEventListener(WebInspector.ResourceTreeModel.EventTypes.FrameDetached, this._frameDetached, this);
53 WebInspector.ApplicationCacheModel.EventTypes = {
60 WebInspector.ApplicationCacheModel.prototype = {
63 var frame = /** @type {!WebInspector.ResourceTreeFrame} */ (event.data)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/audits/
AuditController.js 34 * @param {!WebInspector.AuditsPanel} auditsPanel
36 WebInspector.AuditController = function(auditsPanel)
39 WebInspector.targetManager.addEventListener(WebInspector.TargetManager.Events.Load, this._didMainResourceLoad, this);
42 WebInspector.AuditController.prototype = {
44 * @param {!WebInspector.Target} target
45 * @param {!Array.<!WebInspector.AuditCategory>} categories
46 * @param {function(string, !Array.<!WebInspector.AuditCategoryResult>)} resultCallback
50 this._progress.setTitle(WebInspector.UIString("Running audit"));
53 * @param {!WebInspector.AuditCategoryResult} categoryResul
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/
HeapSnapshotProxy.js 34 * @extends {WebInspector.Object}
36 WebInspector.HeapSnapshotWorkerProxy = function(eventHandler)
47 WebInspector.HeapSnapshotWorkerProxy.prototype = {
50 * @param {function(!WebInspector.HeapSnapshotProxy)} snapshotReceivedCallback
51 * @return {!WebInspector.HeapSnapshotLoaderProxy}
56 var proxy = new WebInspector.HeapSnapshotLoaderProxy(this, objectId, profileUid, snapshotReceivedCallback);
57 this._postMessage({callId: this._nextCallId++, disposition: "create", objectId: objectId, methodName: "WebInspector.HeapSnapshotLoader"});
95 * @this {WebInspector.HeapSnapshotWorkerProxy}
162 WebInspector.console.error(WebInspector.UIString("An error occurred when a call to method '%s' was requested", data.errorMethodName))
    [all...]
HeapSnapshotDataGrids.js 33 * @extends {WebInspector.DataGrid}
34 * @param {!WebInspector.ProfileType.DataDisplayDelegate} dataDisplayDelegate
35 * @param {!Array.<!WebInspector.DataGrid.ColumnDescriptor>} columns
37 WebInspector.HeapSnapshotSortableDataGrid = function(dataDisplayDelegate, columns)
39 WebInspector.DataGrid.call(this, columns);
47 * @type {?WebInspector.HeapSnapshotGridNode}
55 * @type {?WebInspector.StatusBarInput}
58 this.addEventListener(WebInspector.HeapSnapshotSortableDataGrid.Events.SortingComplete, this._sortingComplete, this);
59 this.addEventListener(WebInspector.DataGrid.Events.SortingChanged, this.sortingChanged, this);
62 WebInspector.HeapSnapshotSortableDataGrid.Events =
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/extensions/
ExtensionServer.js 33 * @implements {WebInspector.ExtensionServerAPI}
35 WebInspector.ExtensionServer = function()
46 this._status = new WebInspector.ExtensionStatus();
48 var commands = WebInspector.extensionAPI.Commands;
83 WebInspector.ExtensionServer.prototype = {
94 this._postNotification(WebInspector.extensionAPI.Events.PanelSearch + panelId, action, searchString);
99 this._postNotification(WebInspector.extensionAPI.Events.ViewShown + identifier, frameIndex);
104 this._postNotification(WebInspector.extensionAPI.Events.ViewHidden + identifier);
109 this._postNotification(WebInspector.extensionAPI.Events.ButtonClicked + identifier);
116 this._postNotification(WebInspector.extensionAPI.Events.InspectedURLChanged, url)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
Object.js 28 * @implements {WebInspector.EventTarget}
30 WebInspector.Object = function() {
33 WebInspector.Object.prototype = {
36 * @param {function(!WebInspector.Event)} listener
53 * @param {function(!WebInspector.Event)} listener
98 var event = new WebInspector.Event(this, eventType, eventData);
112 * @param {!WebInspector.EventTarget} target
116 WebInspector.Event = function(target, type, data)
125 WebInspector.Event.prototype = {
150 WebInspector.EventTarget = function(
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/elements/
Spectrum.js 31 * @extends {WebInspector.VBox}
33 WebInspector.Spectrum = function()
35 WebInspector.VBox.call(this);
49 alphaLabel.textContent = WebInspector.UIString("\u03B1:");
63 WebInspector.Spectrum.draggable(this._sliderElement, hueDrag.bind(this));
64 WebInspector.Spectrum.draggable(this._draggerElement, colorDrag.bind(this), colorDragStart.bind(this));
70 * @this {WebInspector.Spectrum}
82 * @this {WebInspector.Spectrum}
94 * @this {WebInspector.Spectrum}
112 * @this {WebInspector.Spectrum
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/network/
RequestHeadersView.js 33 * @extends {WebInspector.VBox}
34 * @param {!WebInspector.NetworkRequest} request
36 WebInspector.RequestHeadersView = function(request)
38 WebInspector.VBox.call(this);
91 this._requestPayloadTreeElement = new TreeElement(WebInspector.UIString("Request Payload"), null, true);
103 WebInspector.RequestHeadersView.prototype = {
107 this._request.addEventListener(WebInspector.NetworkRequest.Events.RemoteAddressChanged, this._refreshRemoteAddress, this);
108 this._request.addEventListener(WebInspector.NetworkRequest.Events.RequestHeadersChanged, this._refreshRequestHeaders, this);
109 this._request.addEventListener(WebInspector.NetworkRequest.Events.ResponseHeadersChanged, this._refreshResponseHeaders, this);
110 this._request.addEventListener(WebInspector.NetworkRequest.Events.FinishedLoading, this._refreshHTTPInformation, this)
    [all...]

Completed in 7071 milliseconds

1 2 3 4 5 6 78 91011>>