/external/chromium_org/third_party/WebKit/PerformanceTests/inspector/ |
heap-snapshot-performance-test.js | 3 WebInspector.showPanel("profiles"); 4 InspectorTest.measureFunction(WebInspector.JSHeapSnapshot.prototype, "_buildEdgeIndexes"); 5 InspectorTest.measureFunction(WebInspector.JSHeapSnapshot.prototype, "_buildRetainers"); 6 InspectorTest.measureFunction(WebInspector.JSHeapSnapshot.prototype, "_buildDominatedNodes"); 7 InspectorTest.measureFunction(WebInspector.JSHeapSnapshot.prototype, "_calculateFlags"); 8 InspectorTest.measureFunction(WebInspector.JSHeapSnapshot.prototype, "_buildAggregates"); 9 InspectorTest.measureFunction(WebInspector.JSHeapSnapshot.prototype, "_calculateClassesRetainedSize"); 10 InspectorTest.measureFunction(WebInspector.JSHeapSnapshot.prototype, "_calculateDistances"); 11 InspectorTest.measureFunction(WebInspector.JSHeapSnapshot.prototype, "_calculateRetainedSizes"); 12 InspectorTest.measureFunction(WebInspector.JSHeapSnapshot.prototype, "_markDetachedDOMTreeNodes") [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/ |
AddSourceMapURLDialog.js | 7 * @extends {WebInspector.DialogDelegate} 10 WebInspector.AddSourceMapURLDialog = function(callback) 12 WebInspector.DialogDelegate.call(this); 15 this.element.createChild("label").textContent = WebInspector.UIString("Source map URL: "); 21 this._goButton.textContent = WebInspector.UIString("Go"); 31 WebInspector.AddSourceMapURLDialog.show = function(element, callback) 33 WebInspector.Dialog.show(element, new WebInspector.AddSourceMapURLDialog(callback)); 36 WebInspector.AddSourceMapURLDialog.prototype = { 39 WebInspector.setCurrentFocusElement(this._input) [all...] |
ScopeChainSidebarPane.js | 29 * @extends {WebInspector.SidebarPane} 31 WebInspector.ScopeChainSidebarPane = function() 33 WebInspector.SidebarPane.call(this, WebInspector.UIString("Scope Variables")); 39 WebInspector.ScopeChainSidebarPane.prototype = { 41 * @param {?WebInspector.DebuggerModel.CallFrame} callFrame 50 infoElement.textContent = WebInspector.UIString("Not Paused"); 80 title = WebInspector.UIString("Local"); 81 emptyPlaceholder = WebInspector.UIString("No Variables"); 85 extraProperties.push(new WebInspector.RemoteObjectProperty("this", thisObject)) [all...] |
ScriptFormatterEditorAction.js | 7 * @implements {WebInspector.DebuggerSourceMapping} 8 * @param {!WebInspector.Target} target 9 * @param {!WebInspector.ScriptFormatterEditorAction} editorAction 11 WebInspector.FormatterScriptMapping = function(target, editorAction) 17 WebInspector.FormatterScriptMapping.prototype = { 19 * @param {!WebInspector.DebuggerModel.Location} rawLocation 20 * @return {?WebInspector.UILocation} 24 var debuggerModelLocation = /** @type {!WebInspector.DebuggerModel.Location} */ (rawLocation); 41 * @param {!WebInspector.UISourceCode} uiSourceCode 44 * @return {?WebInspector.DebuggerModel.Location [all...] |
StyleSheetOutlineDialog.js | 31 * @extends {WebInspector.SelectionDialogContentProvider} 32 * @param {!WebInspector.UISourceCode} uiSourceCode 35 WebInspector.StyleSheetOutlineDialog = function(uiSourceCode, selectItemCallback) 37 WebInspector.SelectionDialogContentProvider.call(this); 39 this._cssParser = new WebInspector.CSSParser(); 40 this._cssParser.addEventListener(WebInspector.CSSParser.Events.RulesParsed, this.refresh.bind(this)); 45 * @param {!WebInspector.View} view 46 * @param {!WebInspector.UISourceCode} uiSourceCode 49 WebInspector.StyleSheetOutlineDialog.show = function(view, uiSourceCode, selectItemCallback) 51 if (WebInspector.Dialog.currentInstance() [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/ |
StackView.js | 31 * @extends {WebInspector.VBox} 34 WebInspector.StackView = function(isVertical) 36 WebInspector.VBox.call(this); 41 WebInspector.StackView.prototype = { 43 * @param {!WebInspector.View} view 47 * @return {!WebInspector.SplitView} 51 var splitView = new WebInspector.SplitView(this._isVertical, true, sidebarSizeSettingName, defaultSidebarWidth, defaultSidebarHeight); 68 WebInspector.View.prototype.detachChildViews.call(this); 72 __proto__: WebInspector.VBox.prototype
|
ZoomManager.js | 7 * @extends {WebInspector.Object} 10 WebInspector.ZoomManager = function(frontendHost) 17 WebInspector.ZoomManager.Events = { 21 WebInspector.ZoomManager.prototype = { 35 this.dispatchEventToListeners(WebInspector.ZoomManager.Events.ZoomChanged, {from: oldZoomFactor, to: this._zoomFactor}); 38 __proto__: WebInspector.Object.prototype 42 * @type {!WebInspector.ZoomManager} 44 WebInspector.zoomManager;
|
SortableDataGrid.js | 7 * @extends {WebInspector.ViewportDataGrid} 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.SortableDataGrid = function(columnsArray, editCallback, deleteCallback, refreshCallback, contextMenuCallback) 16 WebInspector.ViewportDataGrid.call(this, columnsArray, editCallback, deleteCallback, refreshCallback, contextMenuCallback); 17 /** @type {!WebInspector.SortableDataGrid.NodeComparator} */ 18 this._sortingFunction = WebInspector.SortableDataGrid.TrivialComparator [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/ |
Lock.js | 7 * @extends {WebInspector.Object} 9 WebInspector.Lock = function() 17 WebInspector.Lock.Events = { 21 WebInspector.Lock.prototype = { 33 this.dispatchEventToListeners(WebInspector.Lock.Events.StateChanged); 40 console.error("WebInspector.Lock acquire/release calls are unbalanced " + new Error().stack); 44 this.dispatchEventToListeners(WebInspector.Lock.Events.StateChanged); 47 __proto__: WebInspector.Object.prototype
|
ModuleExtensionInterfaces.js | 8 WebInspector.Renderer = function() 12 WebInspector.Renderer.prototype = { 23 WebInspector.Revealer = function() 31 WebInspector.Revealer.reveal = function(revealable, lineNumber) 35 var revealer = self.runtime.instance(WebInspector.Revealer, revealable); 40 WebInspector.Revealer.prototype = { 51 WebInspector.NodeRemoteObjectInspector = function() 55 WebInspector.NodeRemoteObjectInspector.prototype = {
|
Progress.js | 33 * @extends {WebInspector.EventTarget} 35 WebInspector.Progress = function() 39 WebInspector.Progress.Events = { 44 WebInspector.Progress.prototype = { 75 * @param {function(!WebInspector.Event)} listener 83 * @param {!WebInspector.Progress} parent 84 * @extends {WebInspector.Object} 86 WebInspector.CompositeProgress = function(parent) 93 parent.addEventListener(WebInspector.Progress.Events.Canceled, this._parentCanceled.bind(this)); 96 WebInspector.CompositeProgress.prototype = [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/network/ |
RequestHTMLView.js | 33 * @extends {WebInspector.RequestView} 34 * @param {!WebInspector.NetworkRequest} request 37 WebInspector.RequestHTMLView = function(request, dataURL) 39 WebInspector.RequestView.call(this, request); 44 WebInspector.RequestHTMLView.prototype = { 74 __proto__: WebInspector.RequestView.prototype
|
RequestJSONView.js | 33 * @extends {WebInspector.RequestView} 34 * @param {!WebInspector.NetworkRequest} request 35 * @param {!WebInspector.ParsedJSON} parsedJSON 37 WebInspector.RequestJSONView = function(request, parsedJSON) 39 WebInspector.RequestView.call(this, request); 46 * @return {?WebInspector.ParsedJSON} 48 WebInspector.RequestJSONView.parseJSON = function(text) 60 return new WebInspector.ParsedJSON(JSON.parse(text), prefix, ""); 68 * @return {?WebInspector.ParsedJSON} 70 WebInspector.RequestJSONView.parseJSONP = function(text [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/ |
Database.js | 31 * @param {!WebInspector.DatabaseModel} model 37 WebInspector.Database = function(model, id, domain, name, version) 46 WebInspector.Database.prototype = { 123 message = WebInspector.UIString("Database no longer has expected version."); 125 message = WebInspector.UIString("An unexpected error %s occurred.", errorObj.code); 137 * @extends {WebInspector.SDKModel} 138 * @param {!WebInspector.Target} target 140 WebInspector.DatabaseModel = function(target) 142 WebInspector.SDKModel.call(this, WebInspector.DatabaseModel, target) [all...] |
ConsoleModel.js | 33 * @extends {WebInspector.SDKModel} 34 * @param {!WebInspector.Target} target 36 WebInspector.ConsoleModel = function(target) 38 WebInspector.SDKModel.call(this, WebInspector.ConsoleModel, target); 40 /** @type {!Array.<!WebInspector.ConsoleMessage>} */ 45 target.registerConsoleDispatcher(new WebInspector.ConsoleDispatcher(this)); 49 WebInspector.ConsoleModel.Events = { 55 WebInspector.ConsoleModel.prototype = { 58 if (WebInspector.settings.monitoringXHREnabled.get() [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...] |
TransformController.js | 9 * @extends {WebInspector.Object} 13 WebInspector.TransformController = function(element, disableRotate) 31 var panModeButton = new WebInspector.StatusBarButton(WebInspector.UIString("Pan mode (X)"), "transform-mode-pan"); 32 panModeButton.addEventListener("click", this._setMode.bind(this, WebInspector.TransformController.Modes.Pan)); 33 this._modeButtons[WebInspector.TransformController.Modes.Pan] = panModeButton; 35 var rotateModeButton = new WebInspector.StatusBarButton(WebInspector.UIString("Rotate mode (V)"), "transform-mode-rotate"); 36 rotateModeButton.addEventListener("click", this._setMode.bind(this, WebInspector.TransformController.Modes.Rotate)); 37 this._modeButtons[WebInspector.TransformController.Modes.Rotate] = rotateModeButton [all...] |
TimelineModel.js | 33 * @extends {WebInspector.Object} 35 WebInspector.TimelineModel = function() 37 WebInspector.Object.call(this); 41 WebInspector.TimelineModel.RecordType = { 105 WebInspector.TimelineModel.Events = { 114 WebInspector.TimelineModel.MainThreadName = "main"; 117 * @param {!Array.<!WebInspector.TimelineModel.Record>} recordsArray 118 * @param {?function(!WebInspector.TimelineModel.Record)|?function(!WebInspector.TimelineModel.Record,number)} preOrderCallback 119 * @param {function(!WebInspector.TimelineModel.Record)|function(!WebInspector.TimelineModel.Record,number)=} postOrderCallbac [all...] |
TimelinePanel.js | 34 * @extends {WebInspector.Panel} 35 * @implements {WebInspector.TimelineModeViewDelegate} 36 * @implements {WebInspector.Searchable} 38 WebInspector.TimelinePanel = function() 40 WebInspector.Panel.call(this, "timeline"); 46 this._detailsLinkifier = new WebInspector.Linkifier(); 52 this._tracingManager = new WebInspector.TracingManager(); 53 this._tracingManager.addEventListener(WebInspector.TracingManager.Events.BufferUsage, this._onTracingBufferUsage, this); 55 this._tracingModel = new WebInspector.TracingModel(); 56 this._uiUtils = new WebInspector.TracingTimelineUIUtils() [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...] |
TimelinePowerGraph.js | 7 * @extends {WebInspector.CountersGraph} 8 * @implements {WebInspector.TimelineModeView} 9 * @param {!WebInspector.TimelineModeViewDelegate} delegate 10 * @param {!WebInspector.TimelineModel} model 12 WebInspector.TimelinePowerGraph = function(delegate, model) 14 WebInspector.CountersGraph.call(this, WebInspector.UIString("POWER"), delegate, model); 16 this._counter = this.createCounter(WebInspector.UIString("Power"), WebInspector.UIString("Power: %.2f\u2009watts"), "#d00"); 17 WebInspector.powerProfiler.addEventListener(WebInspector.PowerProfiler.EventTypes.PowerEventRecorded, this._onR (…) [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/elements/ |
PropertiesSidebarPane.js | 32 * @extends {WebInspector.SidebarPane} 34 WebInspector.PropertiesSidebarPane = function() 36 WebInspector.SidebarPane.call(this, WebInspector.UIString("Properties")); 38 WebInspector.targetManager.addModelListener(WebInspector.DOMModel, WebInspector.DOMModel.Events.AttrModified, this._onNodeChange, this); 39 WebInspector.targetManager.addModelListener(WebInspector.DOMModel, WebInspector.DOMModel.Events.AttrRemoved, this._onNodeChange, this) [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/audits/ |
AuditsPanel.js | 33 * @extends {WebInspector.PanelWithSidebarTree} 35 WebInspector.AuditsPanel = function() 37 WebInspector.PanelWithSidebarTree.call(this, "audits"); 41 this.auditsTreeElement = new WebInspector.SidebarSectionTreeElement("", {}, true); 45 this.auditsItemTreeElement = new WebInspector.AuditsSidebarTreeElement(this); 48 this.auditResultsTreeElement = new WebInspector.SidebarSectionTreeElement(WebInspector.UIString("RESULTS"), {}, true); 54 this._auditController = new WebInspector.AuditController(this); 55 this._launcherView = new WebInspector.AuditLauncherView(this._auditController); 60 WebInspector.AuditsPanel.prototype = [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/console/ |
ConsoleView.js | 32 * @extends {WebInspector.VBox} 33 * @implements {WebInspector.Searchable} 34 * @implements {WebInspector.TargetManager.Observer} 35 * @implements {WebInspector.ViewportControl.Provider} 37 WebInspector.ConsoleView = function() 39 WebInspector.VBox.call(this); 42 this._searchableView = new WebInspector.SearchableView(this); 52 this._clearConsoleButton = new WebInspector.StatusBarButton(WebInspector.UIString("Clear console log."), "clear-status-bar-item"); 55 this._executionContextSelector = new WebInspector.StatusBarComboBox(this._executionContextChanged.bind(this), "console-context") [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/resources/ |
FileContentView.js | 33 * @extends {WebInspector.VBox} 34 * @param {!WebInspector.FileSystemModel.File} file 36 WebInspector.FileContentView = function(file) 38 WebInspector.VBox.call(this); 40 this._innerView = /** @type {?WebInspector.View} */ (null); 45 WebInspector.FileContentView.prototype = { 50 this._innerView = new WebInspector.EmptyView(""); 52 this._innerView = new WebInspector.EmptyView(WebInspector.UIString("Binary File")); 71 var sourceFrame = /** @type {!WebInspector.SourceFrame} */ (this._innerView) [all...] |