/external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/ |
CPUProfileTopDownDataGrid.js | 28 * @extends {WebInspector.ProfileDataGridNode} 30 * @param {!WebInspector.TopDownProfileDataGridTree} owningTree 32 WebInspector.TopDownProfileDataGridNode = function(profileNode, owningTree) 36 WebInspector.ProfileDataGridNode.call(this, profileNode, owningTree, hasChildren); 42 WebInspector.TopDownProfileDataGridNode.prototype = { 48 WebInspector.TopDownProfileDataGridNode._sharedPopulate(this); 51 __proto__: WebInspector.ProfileDataGridNode.prototype 55 * @param {!WebInspector.TopDownProfileDataGridNode|!WebInspector.TopDownProfileDataGridTree} container 57 WebInspector.TopDownProfileDataGridNode._sharedPopulate = function(container [all...] |
ProfileTypeRegistry.js | 8 WebInspector.ProfileTypeRegistry = function() 12 this.cpuProfileType = new WebInspector.CPUProfileType(); 14 this.heapSnapshotProfileType = new WebInspector.HeapSnapshotProfileType(); 16 this.trackingHeapSnapshotProfileType = new WebInspector.TrackingHeapSnapshotProfileType(); 19 if (!WebInspector.isWorkerFrontend() && Runtime.experiments.isEnabled("canvasInspection")) { 20 this.canvasProfileType = new WebInspector.CanvasProfileType(); 25 WebInspector.ProfileTypeRegistry.prototype = { 27 * @param {!WebInspector.ProfileType} profileType 35 * @return {!Array.<!WebInspector.ProfileType>} 43 WebInspector.ProfileTypeRegistry.instance = new WebInspector.ProfileTypeRegistry() [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/ |
CPUProfilerModel.js | 31 * @extends {WebInspector.SDKModel} 32 * @param {!WebInspector.Target} target 35 WebInspector.CPUProfilerModel = function(target) 37 WebInspector.SDKModel.call(this, WebInspector.CPUProfilerModel, target); 43 WebInspector.settings.highResolutionCpuProfiling.addChangeListener(this._configureCpuProfilerSamplingInterval, this); 46 WebInspector.CPUProfilerModel.EventTypes = { 53 WebInspector.CPUProfilerModel.prototype = { 57 var intervalUs = WebInspector.settings.highResolutionCpuProfiling.get() ? 100 : 1000; 62 WebInspector.console.error(error) [all...] |
TracingManager.js | 9 * @extends {WebInspector.Object} 10 * @implements {WebInspector.TargetManager.Observer} 12 WebInspector.TracingManager = function() 14 WebInspector.Object.call(this); 16 WebInspector.targetManager.observeTargets(this); 19 WebInspector.TracingManager.Events = { 40 WebInspector.TracingManager.EventPayload; 42 WebInspector.TracingManager.prototype = { 44 * @param {!WebInspector.Target} target 51 target.registerTracingDispatcher(new WebInspector.TracingDispatcher(this)) [all...] |
Locks.js | 6 * @return {!WebInspector.Lock} 8 WebInspector.profilingLock = function() 10 if (!WebInspector._profilingLock) 11 WebInspector._profilingLock = new WebInspector.Lock(); 12 return WebInspector._profilingLock;
|
WorkerManager.js | 33 * @extends {WebInspector.Object} 34 * @param {!WebInspector.Target} target 37 WebInspector.WorkerManager = function(target, isMainFrontend) 40 target.registerWorkerDispatcher(new WebInspector.WorkerDispatcher(this)); 43 target.resourceTreeModel.addEventListener(WebInspector.ResourceTreeModel.EventTypes.MainFrameNavigated, this._mainFrameNavigated, this); 47 WebInspector.WorkerManager.Events = { 56 WebInspector.WorkerManager.MainThreadId = 0; 58 WebInspector.WorkerManager.prototype = { 64 this._threadUrlByThreadId[WebInspector.WorkerManager.MainThreadId] = WebInspector.UIString("Thread: Main") [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/toolbox_bootstrap/ |
Toolbox.js | 8 new WebInspector.Toolbox(); 15 WebInspector.Toolbox = function() 20 WebInspector.zoomManager = new WebInspector.ZoomManager(window.opener.InspectorFrontendHost); 21 WebInspector.overridesSupport = window.opener.WebInspector.overridesSupport; 22 WebInspector.settings = window.opener.WebInspector.settings; 23 WebInspector.experimentsSettings = window.opener.WebInspector.experimentsSettings [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/ |
HandlerRegistry.js | 33 * @extends {WebInspector.Object} 35 WebInspector.HandlerRegistry = function(setting) 37 WebInspector.Object.call(this); 43 WebInspector.HandlerRegistry.prototype = { 84 this.dispatchEventToListeners(WebInspector.HandlerRegistry.EventTypes.HandlersUpdated); 90 this.dispatchEventToListeners(WebInspector.HandlerRegistry.EventTypes.HandlersUpdated); 102 * @param {!WebInspector.ContextMenu} contextMenu 107 if (!(target instanceof WebInspector.UISourceCode || target instanceof WebInspector.Resource || target instanceof WebInspector.NetworkRequest) [all...] |
PropertiesSection.js | 32 * @extends {WebInspector.Section} 36 WebInspector.PropertiesSection = function(title, subtitle) 38 WebInspector.Section.call(this, title, subtitle); 50 WebInspector.PropertiesSection.prototype = { 51 __proto__: WebInspector.Section.prototype
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/extensions/ |
ExtensionView.js | 33 * @extends {WebInspector.View} 38 WebInspector.ExtensionView = function(id, src, className) 40 WebInspector.View.call(this); 53 WebInspector.ExtensionView.prototype = { 57 WebInspector.extensionServer.notifyViewShown(this._id, this._frameIndex); 63 WebInspector.extensionServer.notifyViewHidden(this._id); 71 WebInspector.extensionServer.notifyViewShown(this._id, this._frameIndex); 74 __proto__: WebInspector.View.prototype 79 * @extends {WebInspector.VBox} 82 WebInspector.ExtensionNotifierView = function(id [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/network/ |
RequestCookiesView.js | 33 * @extends {WebInspector.VBox} 34 * @param {!WebInspector.NetworkRequest} request 36 WebInspector.RequestCookiesView = function(request) 38 WebInspector.VBox.call(this); 45 WebInspector.RequestCookiesView.prototype = { 48 this._request.addEventListener(WebInspector.NetworkRequest.Events.RequestHeadersChanged, this._refreshCookies, this); 49 this._request.addEventListener(WebInspector.NetworkRequest.Events.ResponseHeadersChanged, this._refreshCookies, this); 53 this._emptyView = new WebInspector.EmptyView(WebInspector.UIString("This request has no cookies.")); 65 this._request.removeEventListener(WebInspector.NetworkRequest.Events.RequestHeadersChanged, this._refreshCookies, this) [all...] |
ResourceWebSocketFrameView.js | 21 * @extends {WebInspector.VBox} 22 * @param {!WebInspector.NetworkRequest} request 24 WebInspector.ResourceWebSocketFrameView = function(request) 26 WebInspector.VBox.call(this); 33 {id: "data", title: WebInspector.UIString("Data"), sortable: false, weight: 88, longText: true}, 34 {id: "length", title: WebInspector.UIString("Length"), sortable: false, align: WebInspector.DataGrid.Align.Right, weight: 5}, 35 {id: "time", title: WebInspector.UIString("Time"), weight: 7} 38 this._dataGrid = new WebInspector.SortableDataGrid(columns, undefined, undefined, undefined, this._onContextMenu.bind(this)); 40 var comparator = /** @type {!WebInspector.SortableDataGrid.NodeComparator} */ (WebInspector.ResourceWebSocketFrameNodeTimeComparator) [all...] |
RequestResponseView.js | 33 * @extends {WebInspector.RequestContentView} 34 * @param {!WebInspector.NetworkRequest} request 36 WebInspector.RequestResponseView = function(request) 38 WebInspector.RequestContentView.call(this, request); 41 WebInspector.RequestResponseView._maxFormattedResourceSize = 100000; 43 WebInspector.RequestResponseView.prototype = { 46 if (this._sourceView || !WebInspector.RequestView.hasTextContent(this.request)) 49 if (this.request.resourceSize >= WebInspector.RequestResponseView._maxFormattedResourceSize) { 50 this._sourceView = new WebInspector.ResourceSourceFrameFallback(this.request); 54 var sourceFrame = new WebInspector.ResourceSourceFrame(this.request) [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/audits/ |
AuditCategory.js | 32 WebInspector.AuditCategory = function() 36 WebInspector.AuditCategory.prototype = { 52 * @param {!WebInspector.Target} target 53 * @param {!Array.<!WebInspector.NetworkRequest>} requests 54 * @param {function(!WebInspector.AuditRuleResult)} ruleResultCallback 56 * @param {!WebInspector.Progress} progress
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/ |
UIString.js | 37 WebInspector.UIString = function(string, vararg) 39 return String.vsprintf(WebInspector.localize(string), Array.prototype.slice.call(arguments, 1)); 46 WebInspector.localize = function(string) 55 WebInspector.UIStringFormat = function(format) 58 this._localizedFormat = WebInspector.localize(format); 68 WebInspector.UIStringFormat._append = function(a, b) 73 WebInspector.UIStringFormat.prototype = { 81 String.standardFormatters, "", WebInspector.UIStringFormat._append, this._tokenizedFormat).formattedResult;
|
Console.js | 7 * @extends {WebInspector.Object} 9 WebInspector.Console = function() 11 /** @type {!Array.<!WebInspector.Console.Message>} */ 18 WebInspector.Console.Events = { 25 WebInspector.Console.MessageLevel = { 34 * @param {!WebInspector.Console.MessageLevel} level 38 WebInspector.Console.Message = function(text, level, timestamp, show) 49 WebInspector.Console.UIDelegate = function() 53 WebInspector.Console.UIDelegate.prototype = { 57 WebInspector.Console.prototype = [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/main/ |
App.js | 8 WebInspector.App = function() 12 WebInspector.App.prototype = { 19 * @type {!WebInspector.App} 21 WebInspector.app;
|
ScreencastApp.js | 7 * @extends {WebInspector.App} 8 * @implements {WebInspector.TargetManager.Observer} 10 WebInspector.ScreencastApp = function() 12 WebInspector.App.call(this); 14 var lastScreencastState = WebInspector.settings.createSetting("lastScreencastState", "left"); 15 this._currentScreencastState = WebInspector.settings.createSetting("currentScreencastState", "disabled"); 16 this._toggleScreencastButton = new WebInspector.StatusBarStatesSettingButton( 19 [WebInspector.UIString("Disable screencast."), WebInspector.UIString("Switch to portrait screencast."), WebInspector.UIString("Switch to landscape screencast.")] [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/ |
EmptyView.js | 33 * @extends {WebInspector.VBox} 35 WebInspector.EmptyView = function(text) 37 WebInspector.VBox.call(this); 41 WebInspector.EmptyView.prototype = { 55 __proto__: WebInspector.VBox.prototype
|
Dialog.js | 34 * @param {!WebInspector.DialogDelegate} delegate 36 WebInspector.Dialog = function(relativeToElement, delegate) 41 this._glassPane = new WebInspector.GlassPane(); 42 WebInspector.GlassPane.DefaultFocusedViewStack.push(this); 53 WebInspector.KeyboardShortcut.Keys.Enter.code, 54 WebInspector.KeyboardShortcut.Keys.Esc.code, 64 * @return {?WebInspector.Dialog} 66 WebInspector.Dialog.currentInstance = function() 68 return WebInspector.Dialog._instance; 73 * @param {!WebInspector.DialogDelegate} delegat [all...] |
UIUtils.js | 40 WebInspector.installDragHandle = function(element, elementDragStart, elementDrag, elementDragEnd, cursor, hoverCursor) 42 element.addEventListener("mousedown", WebInspector.elementDragStart.bind(WebInspector, elementDragStart, elementDrag, elementDragEnd, cursor), false); 54 WebInspector.elementDragStart = function(elementDragStart, elementDrag, elementDragEnd, cursor, event) 57 if (event.button || (WebInspector.isMac() && event.ctrlKey)) 60 if (WebInspector._elementDraggingEventListener) 66 if (WebInspector._elementDraggingGlassPane) { 67 WebInspector._elementDraggingGlassPane.dispose(); 68 delete WebInspector._elementDraggingGlassPane; 73 WebInspector._elementDraggingEventListener = elementDrag [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/ |
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...] |
SourcesNavigator.js | 31 * @extends {WebInspector.Object} 32 * @param {!WebInspector.Workspace} workspace 34 WebInspector.SourcesNavigator = function(workspace) 36 WebInspector.Object.call(this); 39 this._tabbedPane = new WebInspector.TabbedPane(); 42 this._tabbedPaneController = new WebInspector.ExtensibleTabbedPaneController(this._tabbedPane, "navigator-view", this._navigatorViewCreated.bind(this)); 43 /** @type {!StringMap.<?WebInspector.NavigatorView>} */ 47 WebInspector.SourcesNavigator.Events = { 52 WebInspector.SourcesNavigator.prototype = { 55 * @param {!WebInspector.View} vie [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/bindings/ |
DebuggerWorkspaceBinding.js | 7 * @implements {WebInspector.TargetManager.Observer} 8 * @param {!WebInspector.TargetManager} targetManager 9 * @param {!WebInspector.Workspace} workspace 10 * @param {!WebInspector.NetworkWorkspaceBinding} networkWorkspaceBinding 12 WebInspector.DebuggerWorkspaceBinding = function(targetManager, workspace, networkWorkspaceBinding) 17 /** @type {!Map.<!WebInspector.Target, !WebInspector.DebuggerWorkspaceBinding.TargetData>} */ 21 targetManager.addModelListener(WebInspector.DebuggerModel, WebInspector.DebuggerModel.Events.GlobalObjectCleared, this._globalObjectCleared, this); 22 targetManager.addModelListener(WebInspector.DebuggerModel, WebInspector.DebuggerModel.Events.DebuggerResumed, this._debuggerResumed, this) [all...] |
ContentScriptProjectDecorator.js | 8 WebInspector.ContentScriptProjectDecorator = function() 10 WebInspector.targetManager.addModelListener(WebInspector.RuntimeModel, WebInspector.RuntimeModel.Events.ExecutionContextCreated, this._onContextCreated, this); 11 WebInspector.workspace.addEventListener(WebInspector.Workspace.Events.ProjectAdded, this._onProjectAdded, this); 15 * @param {!WebInspector.Project} project 16 * @param {!WebInspector.ExecutionContext} context 18 WebInspector.ContentScriptProjectDecorator._updateProjectWithExtensionName = function(project, context) 24 WebInspector.ContentScriptProjectDecorator.prototype = [all...] |