/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/ |
SidebarPane.js | 31 * @extends {WebInspector.View} 33 WebInspector.SidebarPane = function(title) 35 WebInspector.View.call(this); 45 WebInspector.SidebarPane.EventTypes = { 49 WebInspector.SidebarPane.prototype = { 94 WebInspector.View.prototype.wasShown.call(this); 95 this.dispatchEventToListeners(WebInspector.SidebarPane.EventTypes.wasShown); 98 __proto__: WebInspector.View.prototype 104 * @param {!WebInspector.SidebarPane} pane 106 WebInspector.SidebarPaneTitle = function(container, pane [all...] |
ProgressIndicator.js | 33 * @implements {WebInspector.Progress} 34 * @extends {WebInspector.Object} 36 WebInspector.ProgressIndicator = function() 41 this._stopButton = new WebInspector.StatusBarButton(WebInspector.UIString("Cancel"), "progress-bar-stop-button"); 48 WebInspector.ProgressIndicator.prototype = { 70 this.dispatchEventToListeners(WebInspector.Progress.Events.Done); 76 this.dispatchEventToListeners(WebInspector.Progress.Events.Canceled); 123 __proto__: WebInspector.Object.prototype
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/audits/ |
AuditRules.js | 31 WebInspector.AuditRules.IPAddressRegexp = /^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$/; 33 WebInspector.AuditRules.CacheableResponseCodes = 46 * @param {!Array.<!WebInspector.NetworkRequest>} requests 47 * @param {?Array.<!WebInspector.resourceTypes>} types 49 * @return {!Object.<string, !Array.<!WebInspector.NetworkRequest|string>>} 51 WebInspector.AuditRules.getDomainToResourcesMap = function(requests, types, needFullResources) 74 * @extends {WebInspector.AuditRule} 76 WebInspector.AuditRules.GzipRule = function() 78 WebInspector.AuditRule.call(this, "network-gzip", WebInspector.UIString("Enable gzip compression")) [all...] |
AuditResultView.js | 33 * @extends {WebInspector.SidebarPaneStack} 34 * @param {!Array.<!WebInspector.AuditCategoryResult>} categoryResults 36 WebInspector.AuditResultView = function(categoryResults) 38 WebInspector.SidebarPaneStack.call(this); 47 this.addPane(new WebInspector.AuditCategoryResultPane(categoryResults[i])); 50 WebInspector.AuditResultView.prototype = { 51 __proto__: WebInspector.SidebarPaneStack.prototype 56 * @extends {WebInspector.SidebarPane} 57 * @param {!WebInspector.AuditCategoryResult} categoryResult 59 WebInspector.AuditCategoryResultPane = function(categoryResult [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/bindings/ |
NetworkWorkspaceBinding.js | 33 * @extends {WebInspector.ContentProviderBasedProjectDelegate} 34 * @param {!WebInspector.Workspace} workspace 37 * @param {!WebInspector.projectTypes} projectType 39 WebInspector.NetworkProjectDelegate = function(workspace, projectId, projectName, projectType) 43 WebInspector.ContentProviderBasedProjectDelegate.call(this, workspace, projectId, projectType); 47 WebInspector.NetworkProjectDelegate.prototype = { 64 this._displayName = WebInspector.UIString("(no domain)"); 67 var parsedURL = new WebInspector.ParsedURL(this._name); 90 * @param {!WebInspector.ContentProvider} contentProvider 98 __proto__: WebInspector.ContentProviderBasedProjectDelegate.prototyp [all...] |
Linkifier.js | 34 WebInspector.LinkifierFormatter = function() 38 WebInspector.LinkifierFormatter.prototype = { 41 * @param {!WebInspector.UILocation} uiLocation 48 * @implements {WebInspector.TargetManager.Observer} 49 * @param {!WebInspector.LinkifierFormatter=} formatter 51 WebInspector.Linkifier = function(formatter) 53 this._formatter = formatter || new WebInspector.Linkifier.DefaultFormatter(WebInspector.Linkifier.MaxLengthForDisplayedURLs); 54 /** @type {!Map.<!WebInspector.Target, !Array.<{anchor: !Element, location: !WebInspector.LiveLocation}>>}* [all...] |
WorkspaceController.js | 34 WebInspector.WorkspaceController = function(workspace) 38 this._fileSystemRefreshThrottler = new WebInspector.Throttler(1000); 41 WebInspector.WorkspaceController.prototype = { 50 * @this {WebInspector.WorkspaceController} 51 * @param {!WebInspector.Throttler.FinishCallback} callback
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/ |
NetworkLog.js | 33 * @extends {WebInspector.SDKObject} 34 * @param {!WebInspector.Target} target 36 WebInspector.NetworkLog = function(target) 38 WebInspector.SDKObject.call(this, target); 42 target.networkManager.addEventListener(WebInspector.NetworkManager.EventTypes.RequestStarted, this._onRequestStarted, this); 43 target.resourceTreeModel.addEventListener(WebInspector.ResourceTreeModel.EventTypes.MainFrameNavigated, this._onMainFrameNavigated, this); 44 target.resourceTreeModel.addEventListener(WebInspector.ResourceTreeModel.EventTypes.Load, this._onLoad, this); 45 target.resourceTreeModel.addEventListener(WebInspector.ResourceTreeModel.EventTypes.DOMContentLoaded, this._onDOMContentLoaded, this); 48 WebInspector.NetworkLog.prototype = { 50 * @return {!Array.<!WebInspector.NetworkRequest> [all...] |
BlackboxSupport.js | 5 WebInspector.BlackboxSupport = {} 11 WebInspector.BlackboxSupport._urlToRegExpString = function(url) 13 var parsedURL = new WebInspector.ParsedURL(url); 42 WebInspector.BlackboxSupport.canBlackboxURL = function(url) 44 return !!WebInspector.BlackboxSupport._urlToRegExpString(url); 50 WebInspector.BlackboxSupport.blackboxURL = function(url) 52 var regexPatterns = WebInspector.settings.skipStackFramesPattern.getAsArray(); 53 var regexValue = WebInspector.BlackboxSupport._urlToRegExpString(url); 67 WebInspector.settings.skipStackFramesPattern.setAsArray(regexPatterns); 74 WebInspector.BlackboxSupport.unblackbox = function(url, isContentScript [all...] |
DOMStorage.js | 32 * @extends {WebInspector.Object} 33 * @param {!WebInspector.DOMStorageModel} model 37 WebInspector.DOMStorage = function(model, securityOrigin, isLocalStorage) 49 WebInspector.DOMStorage.storageId = function(securityOrigin, isLocalStorage) 54 WebInspector.DOMStorage.Events = { 61 WebInspector.DOMStorage.prototype = { 66 return WebInspector.DOMStorage.storageId(this._securityOrigin, this._isLocalStorage); 106 __proto__: WebInspector.Object.prototype 111 * @extends {WebInspector.SDKModel} 112 * @param {!WebInspector.Target} targe [all...] |
CSSMetadata.js | 37 WebInspector.CSSMetadata = function(properties) 69 * @type {!WebInspector.CSSMetadata} 71 WebInspector.CSSMetadata.cssPropertiesMetainfo = new WebInspector.CSSMetadata([]); 77 WebInspector.CSSMetadata.isColorAwareProperty = function(propertyName) 79 return !!WebInspector.CSSMetadata._colorAwareProperties[propertyName.toLowerCase()]; 85 WebInspector.CSSMetadata.colors = function() 87 if (!WebInspector.CSSMetadata._colorsKeySet) 88 WebInspector.CSSMetadata._colorsKeySet = WebInspector.CSSMetadata._colors.keySet() [all...] |
IndexedDBModel.js | 33 * @extends {WebInspector.SDKModel} 35 WebInspector.IndexedDBModel = function(target) 37 WebInspector.SDKModel.call(this, WebInspector.IndexedDBModel, target); 41 target.resourceTreeModel.addEventListener(WebInspector.ResourceTreeModel.EventTypes.SecurityOriginAdded, this._securityOriginAdded, this); 42 target.resourceTreeModel.addEventListener(WebInspector.ResourceTreeModel.EventTypes.SecurityOriginRemoved, this._securityOriginRemoved, this); 44 /** @type {!Map.<!WebInspector.IndexedDBModel.DatabaseId, !WebInspector.IndexedDBModel.Database>} */ 51 WebInspector.IndexedDBModel.KeyTypes = { 58 WebInspector.IndexedDBModel.KeyPathTypes = [all...] |
WorkerTargetManager.js | 8 * @param {!WebInspector.Target} mainTarget 9 * @param {!WebInspector.TargetManager} targetManager 11 WebInspector.WorkerTargetManager = function(mainTarget, targetManager) 15 mainTarget.workerManager.addEventListener(WebInspector.WorkerManager.Events.WorkerAdded, this._onWorkerAdded, this); 16 mainTarget.workerManager.addEventListener(WebInspector.WorkerManager.Events.WorkersCleared, this._onWorkersCleared, this); 17 WebInspector.profilingLock().addEventListener(WebInspector.Lock.Events.StateChanged, this._onProfilingStateChanged, this); 22 WebInspector.WorkerTargetManager.prototype = { 25 var acquired = WebInspector.profilingLock().isAcquired(); 30 * @param {!WebInspector.Event} even [all...] |
SnippetStorage.js | 33 * @extends {WebInspector.Object} 35 WebInspector.SnippetStorage = function(settingPrefix, namePrefix) 39 this._lastSnippetIdentifierSetting = WebInspector.settings.createSetting(settingPrefix + "Snippets_lastIdentifier", 0); 40 this._snippetsSetting = WebInspector.settings.createSetting(settingPrefix + "Snippets", []); 46 WebInspector.SnippetStorage.prototype = { 61 * @return {!Array.<!WebInspector.Snippet>} 73 * @return {!WebInspector.Snippet} 82 * @return {?WebInspector.Snippet} 97 this._snippetAdded(WebInspector.Snippet.fromObject(this, savedSnippets[i])); 101 * @param {!WebInspector.Snippet} snippe [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/ |
InplaceFormatterEditorAction.js | 8 * @implements {WebInspector.SourcesView.EditorAction} 10 WebInspector.InplaceFormatterEditorAction = function() 14 WebInspector.InplaceFormatterEditorAction.prototype = { 16 * @param {!WebInspector.Event} event 20 var uiSourceCode = /** @type {!WebInspector.UISourceCode} */ (event.data); 25 * @param {!WebInspector.Event} event 35 * @param {?WebInspector.UISourceCode} uiSourceCode 43 * @param {!WebInspector.SourcesView} sourcesView 52 this._sourcesView.addEventListener(WebInspector.SourcesView.Events.EditorSelected, this._editorSelected.bind(this)); 53 this._sourcesView.addEventListener(WebInspector.SourcesView.Events.EditorClosed, this._editorClosed.bind(this)) [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/settings/ |
EditFileSystemDialog.js | 33 * @extends {WebInspector.DialogDelegate} 36 WebInspector.EditFileSystemDialog = function(fileSystemPath) 38 WebInspector.DialogDelegate.call(this); 45 headerText.textContent = WebInspector.UIString("Edit file system"); 52 WebInspector.isolatedFileSystemManager.mapping().addEventListener(WebInspector.FileSystemMapping.Events.FileMappingAdded, this._fileMappingAdded, this); 53 WebInspector.isolatedFileSystemManager.mapping().addEventListener(WebInspector.FileSystemMapping.Events.FileMappingRemoved, this._fileMappingRemoved, this); 54 WebInspector.isolatedFileSystemManager.mapping().addEventListener(WebInspector.FileSystemMapping.Events.ExcludedFolderAdded, this._excludedFolderAdded, this) [all...] |
SettingsScreen.js | 34 * @extends {WebInspector.HelpScreen} 36 WebInspector.SettingsScreen = function(onHide) 38 WebInspector.HelpScreen.call(this); 44 this._tabbedPane = new WebInspector.TabbedPane(); 47 settingsLabelElement.createTextChild(WebInspector.UIString("Settings")); 50 this._tabbedPane.appendTab(WebInspector.SettingsScreen.Tabs.General, WebInspector.UIString("General"), new WebInspector.GenericSettingsTab()); 51 this._tabbedPane.appendTab(WebInspector.SettingsScreen.Tabs.Workspace, WebInspector.UIString("Workspace"), new WebInspector.WorkspaceSettingsTab()) [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/layers/ |
LayerPaintProfilerView.js | 7 * @param {function(!WebInspector.Layer, string=)} showImageForLayerCallback 8 * @extends {WebInspector.SplitView} 10 WebInspector.LayerPaintProfilerView = function(showImageForLayerCallback) 12 WebInspector.SplitView.call(this, true, false); 15 this._logTreeView = new WebInspector.PaintProfilerCommandLogView(); 17 this._paintProfilerView = new WebInspector.PaintProfilerView(this._showImage.bind(this)); 20 this._paintProfilerView.addEventListener(WebInspector.PaintProfilerView.Events.WindowChanged, this._onWindowChanged, this); 23 WebInspector.LayerPaintProfilerView.prototype = { 25 * @param {!WebInspector.Layer} layer 34 * @param {!WebInspector.PaintProfilerSnapshot=} snapsho [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/ |
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...] |
TimelinePaintProfilerView.js | 7 * @extends {WebInspector.SplitView} 9 WebInspector.TimelinePaintProfilerView = function() 11 WebInspector.SplitView.call(this, false, false); 16 this._logAndImageSplitView = new WebInspector.SplitView(true, false); 18 this._imageView = new WebInspector.TimelinePaintImageView(); 21 this._paintProfilerView = new WebInspector.PaintProfilerView(this._imageView.showImage.bind(this._imageView)); 22 this._paintProfilerView.addEventListener(WebInspector.PaintProfilerView.Events.WindowChanged, this._onWindowChanged, this); 25 this._logTreeView = new WebInspector.PaintProfilerCommandLogView(); 29 WebInspector.TimelinePaintProfilerView.prototype = { 39 * @param {?WebInspector.Target} targe [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/ |
InspectorView.js | 33 * @extends {WebInspector.VBox} 35 WebInspector.InspectorView = function() 37 WebInspector.VBox.call(this); 38 WebInspector.Dialog.setModalHostView(this); 39 WebInspector.GlassPane.DefaultFocusedViewStack.push(this); 43 this._drawerSplitView = new WebInspector.SplitView(false, true, "Inspector.drawerSplitViewState", 200, 200); 48 this._tabbedPane = new WebInspector.TabbedPane(); 49 this._tabbedPane.setRetainTabOrder(true, self.runtime.orderComparator(WebInspector.Panel, "name", "order")); 51 this._drawer = new WebInspector.Drawer(this._drawerSplitView); 71 WebInspector["panels"] = this._panels [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/resources/ |
DirectoryContentView.js | 33 * @extends {WebInspector.SortableDataGrid} 35 WebInspector.DirectoryContentView = function() 37 const indexes = WebInspector.DirectoryContentView.columnIndexes; 39 {id: indexes.Name, title: WebInspector.UIString("Name"), sortable: true, sort: WebInspector.DataGrid.Order.Ascending, width: "20%"}, 40 {id: indexes.URL, title: WebInspector.UIString("URL"), sortable: true, width: "20%"}, 41 {id: indexes.Type, title: WebInspector.UIString("Type"), sortable: true, width: "15%"}, 42 {id: indexes.Size, title: WebInspector.UIString("Size"), sortable: true, width: "10%"}, 43 {id: indexes.ModificationTime, title: WebInspector.UIString("Modification Time"), sortable: true, width: "25%"} 46 WebInspector.SortableDataGrid.call(this, columns) [all...] |
FileSystemView.js | 33 * @extends {WebInspector.SplitView} 34 * @param {!WebInspector.FileSystemModel.FileSystem} fileSystem 36 WebInspector.FileSystemView = function(fileSystem) 38 WebInspector.SplitView.call(this, true, false, "fileSystemViewSplitViewState"); 47 var rootItem = new WebInspector.FileSystemView.EntryTreeElement(this, fileSystem.root); 52 this._refreshButton = new WebInspector.StatusBarButton(WebInspector.UIString("Refresh"), "refresh-storage-status-bar-item"); 56 this._deleteButton = new WebInspector.StatusBarButton(WebInspector.UIString("Delete"), "delete-storage-status-bar-item"); 61 WebInspector.FileSystemView.prototype = [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/source_frame/ |
FontView.js | 30 * @extends {WebInspector.ResourceView} 33 WebInspector.FontView = function(resource) 35 WebInspector.ResourceView.call(this, resource); 40 WebInspector.FontView._fontPreviewLines = [ "ABCDEFGHIJKLM", "NOPQRSTUVWXYZ", "abcdefghijklm", "nopqrstuvwxyz", "1234567890" ]; 42 WebInspector.FontView._fontId = 0; 44 WebInspector.FontView._measureFontSize = 50; 46 WebInspector.FontView.prototype = { 60 var uniqueFontName = "WebInspectorFontPreview" + (++WebInspector.FontView._fontId); 67 for (var i = 0; i < WebInspector.FontView._fontPreviewLines.length; ++i) { 70 fontPreview.createTextChild(WebInspector.FontView._fontPreviewLines[i]) [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/ |
CanvasProfileView.js | 33 * @extends {WebInspector.VBox} 34 * @param {!WebInspector.CanvasProfileHeader} profile 36 WebInspector.CanvasProfileView = function(profile) 38 WebInspector.VBox.call(this); 44 this._traceLogPlayer = /** @type {!WebInspector.CanvasTraceLogPlayerProxy} */ (profile.traceLogPlayer()); 45 this._linkifier = new WebInspector.Linkifier(); 47 this._replayInfoSplitView = new WebInspector.SplitView(true, true, "canvasProfileViewReplaySplitViewState", 0.34); 50 this._imageSplitView = new WebInspector.SplitView(false, true, "canvasProfileViewSplitViewState", 300); 53 var replayImageContainerView = new WebInspector.VBoxWithResizeCallback(this._onReplayImageResize.bind(this)); 65 var replayLogContainerView = new WebInspector.VBox() [all...] |