/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/ |
Checkbox.js | 32 WebInspector.Checkbox = function(label, className, tooltip) 42 WebInspector.Checkbox.prototype = {
|
ShortcutRegistry.js | 7 * @param {!WebInspector.ActionRegistry} actionRegistry 9 WebInspector.ShortcutRegistry = function(actionRegistry) 14 /** @type {!StringMultimap.<!WebInspector.KeyboardShortcut.Descriptor>} */ 19 WebInspector.ShortcutRegistry.prototype = { 26 return this._actionRegistry.applicableActions(this._actionIdsForKey(key), WebInspector.context); 55 * @return {!Array.<!WebInspector.KeyboardShortcut.Descriptor>} 82 this.handleKey(WebInspector.KeyboardShortcut.makeKeyFromEvent(event), event.keyIdentifier, event); 94 if (WebInspector.GlassPane.DefaultFocusedViewStack.length > 1) { 115 if (!event || !WebInspector.isBeingEdited(/** @type {!Node} */ (event.target)) || /^F\d+|Control|Shift|Alt|Meta|Win|U\+001B$/.test(keyIdentifier)) 121 var modifiers = WebInspector.KeyboardShortcut.Modifiers [all...] |
CompletionDictionary.js | 34 WebInspector.CompletionDictionary = function() { } 36 WebInspector.CompletionDictionary.prototype = { 70 * @implements {WebInspector.CompletionDictionary} 72 WebInspector.SampleCompletionDictionary = function() { 76 WebInspector.SampleCompletionDictionary.prototype = {
|
Popover.js | 33 * @extends {WebInspector.View} 34 * @param {!WebInspector.PopoverHelper=} popoverHelper 36 WebInspector.Popover = function(popoverHelper) 38 WebInspector.View.call(this); 50 WebInspector.Popover.prototype = { 56 * @param {?WebInspector.Popover.Orientation=} arrowDirection 64 * @param {!WebInspector.View} view 75 * @param {?WebInspector.View} view 80 * @param {?WebInspector.Popover.Orientation=} arrowDirection 89 if (WebInspector.Popover._popover [all...] |
InplaceEditor.js | 8 WebInspector.InplaceEditor = function() 14 * @param {!WebInspector.InplaceEditor.Config=} config 17 WebInspector.InplaceEditor.startEditing = function(element, config) 20 return self.runtime.instance(WebInspector.InplaceEditor).startEditing(element, config); 22 if (!WebInspector.InplaceEditor._defaultInstance) 23 WebInspector.InplaceEditor._defaultInstance = new WebInspector.InplaceEditor(); 24 return WebInspector.InplaceEditor._defaultInstance.startEditing(element, config); 27 WebInspector.InplaceEditor.prototype = { 47 WebInspector.setCurrentFocusElement(element) [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/ |
TimelinePowerOverview.js | 7 * @extends {WebInspector.Object} 9 WebInspector.TimelinePowerOverviewDataProvider = function() 14 WebInspector.powerProfiler.addEventListener(WebInspector.PowerProfiler.EventTypes.PowerEventRecorded, this._onRecordAdded, this); 17 WebInspector.TimelinePowerOverviewDataProvider.prototype = { 20 WebInspector.powerProfiler.removeEventListener(WebInspector.PowerProfiler.EventTypes.PowerEventRecorded, this._onRecordAdded, this); 85 __proto__: WebInspector.Object.prototype 90 * @extends {WebInspector.TimelineOverviewBase} 91 * @param {!WebInspector.TimelineModel} mode [all...] |
TimelineFlameChart.js | 33 * @implements {WebInspector.FlameChartDataProvider} 34 * @param {!WebInspector.TracingTimelineModel} model 35 * @param {!WebInspector.TimelineFrameModelBase} frameModel 37 WebInspector.TimelineFlameChartDataProvider = function(model, frameModel) 39 WebInspector.FlameChartDataProvider.call(this); 43 this._font = "12px " + WebInspector.fontFamily(); 44 this._linkifier = new WebInspector.Linkifier(); 45 this._captureStacksSetting = WebInspector.settings.createSetting("timelineCaptureStacks", true); 47 this.addFilter(WebInspector.TracingTimelineUIUtils.hiddenEventsFilter()); 48 this.addFilter(new WebInspector.TracingTimelineModel.ExclusiveEventNameFilter([WebInspector.TracingTimelineModel.RecordType.Progra (…) [all...] |
TimelinePresentationModel.js | 34 * @extends {WebInspector.Object} 35 * @param {!WebInspector.TimelineModel} model 36 * @param {!WebInspector.TimelineUIUtils} uiUtils 38 WebInspector.TimelinePresentationModel = function(model, uiUtils) 44 * @type {!Map.<!WebInspector.TimelineModel.Record, !WebInspector.TimelinePresentationModel.Record>} 50 WebInspector.TimelinePresentationModel.prototype = { 62 * @param {?WebInspector.TimelineModel.Record} record 63 * @return {?WebInspector.TimelinePresentationModel.Record} 71 * @return {!WebInspector.TimelinePresentationModel.Record [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...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/toolbox/ |
ResponsiveDesignView.js | 7 * @extends {WebInspector.VBox} 8 * @implements {WebInspector.OverridesSupport.PageResizer} 9 * @implements {WebInspector.TargetManager.Observer} 10 * @param {!WebInspector.InspectedPagePlaceholder} inspectedPagePlaceholder 12 WebInspector.ResponsiveDesignView = function(inspectedPagePlaceholder) 14 WebInspector.VBox.call(this); 18 this._responsiveDesignContainer = new WebInspector.VBox(); 23 this._canvasContainer = new WebInspector.View(); 30 this._mediaInspector = new WebInspector.MediaQueryInspector(); 37 warningDisableButton.textContent = WebInspector.UIString("Never show") [all...] |
InspectedPagePlaceholder.js | 7 * @extends {WebInspector.View} 9 WebInspector.InspectedPagePlaceholder = function() 11 WebInspector.View.call(this); 13 WebInspector.zoomManager.addEventListener(WebInspector.ZoomManager.Events.ZoomChanged, this._scheduleUpdate, this); 18 WebInspector.InspectedPagePlaceholder.Events = { 22 WebInspector.InspectedPagePlaceholder.MarginValue = 3; 24 WebInspector.InspectedPagePlaceholder.prototype = { 36 if (parent instanceof WebInspector.SplitView) { 39 margins[side] = WebInspector.InspectedPagePlaceholder.MarginValue [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/ |
RuntimeModel.js | 33 * @extends {WebInspector.SDKModel} 34 * @param {!WebInspector.Target} target 36 WebInspector.RuntimeModel = function(target) 38 WebInspector.SDKModel.call(this, WebInspector.RuntimeModel, target); 42 this.target().registerRuntimeDispatcher(new WebInspector.RuntimeDispatcher(this)); 45 * @type {!Object.<number, !WebInspector.ExecutionContext>} 50 WebInspector.RuntimeModel.Events = { 55 WebInspector.RuntimeModel.prototype = { 58 * @return {!Array.<!WebInspector.ExecutionContext> [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...] |
DOMModel.js | 34 * @extends {WebInspector.SDKObject} 35 * @param {!WebInspector.DOMModel} domModel 36 * @param {?WebInspector.DOMDocument} doc 40 WebInspector.DOMNode = function(domModel, doc, isInShadowTree, payload) { 41 WebInspector.SDKObject.call(this, domModel.target()); 79 var node = new WebInspector.DOMNode(this._domModel, this.ownerDocument, true, root); 86 this._templateContent = new WebInspector.DOMNode(this._domModel, this.ownerDocument, true, payload.templateContent); 91 this._importedDocument = new WebInspector.DOMNode(this._domModel, this.ownerDocument, true, payload.importedDocument); 101 this._contentDocument = new WebInspector.DOMDocument(domModel, payload.contentDocument); 125 WebInspector.DOMNode.PseudoElementNames = [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/workspace/ |
FileSystemMapping.js | 33 * @extends {WebInspector.Object} 35 WebInspector.FileSystemMapping = function() 37 WebInspector.Object.call(this); 38 this._fileSystemMappingSetting = WebInspector.settings.createSetting("fileSystemMapping", {}); 39 this._excludedFoldersSetting = WebInspector.settings.createSetting("workspaceExcludedFolders", {}); 68 if (WebInspector.isWin()) 70 else if (WebInspector.isMac()) 75 WebInspector.settings.workspaceFolderExcludePattern = WebInspector.settings.createRegExpSetting("workspaceFolderExcludePattern", defaultExcludedFoldersPattern, WebInspector.isWin() ? "i" : "") [all...] |
IsolatedFileSystemManager.js | 33 * @extends {WebInspector.Object} 35 WebInspector.IsolatedFileSystemManager = function() 37 /** @type {!Object.<string, !WebInspector.IsolatedFileSystem>} */ 41 this._fileSystemMapping = new WebInspector.FileSystemMapping(); 50 WebInspector.IsolatedFileSystemManager.FileSystem; 52 WebInspector.IsolatedFileSystemManager.Events = { 57 WebInspector.IsolatedFileSystemManager.prototype = { 59 * @return {!WebInspector.FileSystemMapping} 86 * @param {!WebInspector.Event} event 90 var fileSystems = /** @type {!Array.<!WebInspector.IsolatedFileSystemManager.FileSystem>} */ (event.data) [all...] |
FileSystemWorkspaceBinding.js | 33 * @param {!WebInspector.IsolatedFileSystemManager} isolatedFileSystemManager 34 * @param {!WebInspector.Workspace} workspace 36 WebInspector.FileSystemWorkspaceBinding = function(isolatedFileSystemManager, workspace) 40 this._isolatedFileSystemManager.addEventListener(WebInspector.IsolatedFileSystemManager.Events.FileSystemAdded, this._fileSystemAdded, this); 41 this._isolatedFileSystemManager.addEventListener(WebInspector.IsolatedFileSystemManager.Events.FileSystemRemoved, this._fileSystemRemoved, this); 42 /** @type {!StringMap.<!WebInspector.FileSystemWorkspaceBinding.FileSystem>} */ 47 /** @type {!Object.<number, !WebInspector.Progress>} */ 56 WebInspector.FileSystemWorkspaceBinding._scriptExtensions = ["js", "java", "coffee", "ts", "dart"].keySet(); 57 WebInspector.FileSystemWorkspaceBinding._styleSheetExtensions = ["css", "scss", "sass", "less"].keySet(); 58 WebInspector.FileSystemWorkspaceBinding._documentExtensions = ["htm", "html", "asp", "aspx", "phtml", "jsp"].ke (…) [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/ |
DOMPresentationUtils.js | 32 WebInspector.DOMPresentationUtils = {} 34 WebInspector.DOMPresentationUtils.decorateNodeLabel = function(node, parentElement) 83 WebInspector.DOMPresentationUtils.createSpansForNodeTitle = function(container, nodeTitle) 94 * @param {?WebInspector.DOMNode} node 97 WebInspector.DOMPresentationUtils.linkifyNodeReference = function(node) 100 return document.createTextNode(WebInspector.UIString("<node>")); 104 WebInspector.DOMPresentationUtils.decorateNodeLabel(node, link); 106 link.addEventListener("click", WebInspector.Revealer.reveal.bind(WebInspector.Revealer, node, undefined), false); 115 * @param {!WebInspector.Target} targe [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/ |
HeapSnapshotGridNodes.js | 33 * @extends {WebInspector.DataGridNode} 34 * @param {!WebInspector.HeapSnapshotSortableDataGrid} tree 37 WebInspector.HeapSnapshotGridNode = function(tree, hasChildren) 39 WebInspector.DataGridNode.call(this, null, hasChildren); 51 * @type {?WebInspector.HeapSnapshotGridNode.ChildrenProvider} 56 WebInspector.HeapSnapshotGridNode.Events = { 62 * @return {!WebInspector.HeapSnapshotCommon.ComparatorConfig} 64 WebInspector.HeapSnapshotGridNode.createComparator = function(fieldNames) 66 return /** @type {!WebInspector.HeapSnapshotCommon.ComparatorConfig} */ ({fieldName1: fieldNames[0], ascending1: fieldNames[1], fieldName2: fieldNames[2], ascending2: fieldNames[3]}); 73 WebInspector.HeapSnapshotGridNode.ChildrenProvider = function() { [all...] |
CPUProfileBottomUpDataGrid.js | 34 * @extends {WebInspector.ProfileDataGridNode} 36 * @param {!WebInspector.TopDownProfileDataGridTree} owningTree 38 WebInspector.BottomUpProfileDataGridNode = function(profileNode, owningTree) 40 WebInspector.ProfileDataGridNode.call(this, profileNode, owningTree, this._willHaveChildren(profileNode)); 45 WebInspector.BottomUpProfileDataGridNode.prototype = { 47 * @param {!WebInspector.ProfileDataGridNode} profileDataGridNode 59 * @param {!WebInspector.ProfileDataGridNode} child 96 WebInspector.ProfileDataGridNode.prototype.restore.call(this); 104 * @param {!WebInspector.ProfileDataGridNode} child 111 WebInspector.ProfileDataGridNode.prototype.merge.call(this, child, shouldAbsorb) [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/documentation/ |
DocumentationView.js | 7 * @extends {WebInspector.View} 9 WebInspector.DocumentationView = function() 11 WebInspector.View.call(this); 20 WebInspector.DocumentationView.showDocumentationURL = function(url, searchItem) 22 if (!WebInspector.DocumentationView._view) 23 WebInspector.DocumentationView._view = new WebInspector.DocumentationView(); 24 var view = WebInspector.DocumentationView._view; 26 WebInspector.inspectorView.showCloseableViewInDrawer("documentation", WebInspector.UIString("Documentation"), view) [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/resources/ |
DOMStorageItemsView.js | 29 * @extends {WebInspector.VBox} 31 WebInspector.DOMStorageItemsView = function(domStorage) 33 WebInspector.VBox.call(this); 40 this.deleteButton = new WebInspector.StatusBarButton(WebInspector.UIString("Delete"), "delete-storage-status-bar-item"); 44 this.refreshButton = new WebInspector.StatusBarButton(WebInspector.UIString("Refresh"), "refresh-storage-status-bar-item"); 47 this.domStorage.addEventListener(WebInspector.DOMStorage.Events.DOMStorageItemsCleared, this._domStorageItemsCleared, this); 48 this.domStorage.addEventListener(WebInspector.DOMStorage.Events.DOMStorageItemRemoved, this._domStorageItemRemoved, this); 49 this.domStorage.addEventListener(WebInspector.DOMStorage.Events.DOMStorageItemAdded, this._domStorageItemAdded, this) [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/ |
SourcesSearchScope.js | 31 * @implements {WebInspector.SearchScope} 33 WebInspector.SourcesSearchScope = function() 40 * @param {!WebInspector.UISourceCode} uiSourceCode1 41 * @param {!WebInspector.UISourceCode} uiSourceCode2 44 WebInspector.SourcesSearchScope._filesComparator = function(uiSourceCode1, uiSourceCode2) 58 WebInspector.SourcesSearchScope.prototype = { 60 * @param {!WebInspector.Progress} progress 68 var compositeProgress = new WebInspector.CompositeProgress(progress); 69 progress.addEventListener(WebInspector.Progress.Events.Canceled, indexingCanceled); 75 compositeProgress.addEventListener(WebInspector.Progress.Events.Done, indexingFinishedCallback.bind(this, true)) [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/devices/ |
DevicesView.js | 9 * @extends {WebInspector.VBox} 11 WebInspector.DevicesView = function() 13 WebInspector.VBox.call(this); 17 this._devicesHelp.innerHTML = WebInspector.UIString("No devices detected. \ 21 this.element.createChild("div", "devices-info").innerHTML = WebInspector.UIString("Click \"Try here\" button, to open the current page in the selected remote browser."); 27 WebInspector.DevicesView.MinVersionNewTab = 29; 42 WebInspector.DevicesView.Events = { 46 WebInspector.DevicesView.prototype = { 138 : WebInspector.UIString("Pending authentication: please accept debugging session on the device."); 159 if (incompatibleVersion || browser.adbBrowserChromeVersion < WebInspector.DevicesView.MinVersionNewTab) [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/elements/ |
StylesSidebarPane.js | 32 * @extends {WebInspector.SidebarPane} 33 * @param {!WebInspector.ComputedStyleSidebarPane} computedStylePane 34 * @param {function(!WebInspector.DOMNode, string, boolean)=} setPseudoClassCallback 36 WebInspector.StylesSidebarPane = function(computedStylePane, setPseudoClassCallback) 38 WebInspector.SidebarPane.call(this, WebInspector.UIString("Styles")); 42 this._elementStateButton.title = WebInspector.UIString("Toggle Element State"); 49 addButton.title = WebInspector.UIString("New Style Rule"); 54 this._addButtonLongClickController = new WebInspector.LongClickController(addButton); 55 this._addButtonLongClickController.addEventListener(WebInspector.LongClickController.Events.LongClick, this._onAddButtonLongClick.bind(this)) [all...] |