/external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/ |
WebInspector.js | 7 self.WebInspector = {}
|
NotificationService.js | 9 * @extends {WebInspector.Object} 11 WebInspector.NotificationService = function() { } 13 WebInspector.NotificationService.prototype = { 14 __proto__: WebInspector.Object.prototype 17 WebInspector.NotificationService.Events = { 22 WebInspector.notifications = new WebInspector.NotificationService();
|
ResourceType.js | 38 WebInspector.ResourceType = function(name, title, categoryTitle, color, isTextType) 47 WebInspector.ResourceType.prototype = { 101 if (this === WebInspector.resourceTypes.Document) 103 if (this === WebInspector.resourceTypes.Script) 105 if (this === WebInspector.resourceTypes.Stylesheet) 113 * @enum {!WebInspector.ResourceType} 115 WebInspector.resourceTypes = { 116 Document: new WebInspector.ResourceType("document", "Document", "Documents", "rgb(47,102,236)", true), 117 Stylesheet: new WebInspector.ResourceType("stylesheet", "Stylesheet", "Stylesheets", "rgb(157,231,119)", true), 118 Image: new WebInspector.ResourceType("image", "Image", "Images", "rgb(164,60,255)", false) [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/host/ |
Platform.js | 32 WebInspector.platform = function() 34 if (!WebInspector._platform) 35 WebInspector._platform = InspectorFrontendHost.platform(); 36 return WebInspector._platform; 42 WebInspector.isMac = function() 44 if (typeof WebInspector._isMac === "undefined") 45 WebInspector._isMac = WebInspector.platform() === "mac"; 47 return WebInspector._isMac; 53 WebInspector.isWin = function( [all...] |
UserMetrics.js | 34 WebInspector.UserMetrics = function() 36 for (var actionName in WebInspector.UserMetrics._ActionCodes) { 37 var actionCode = WebInspector.UserMetrics._ActionCodes[actionName]; 38 this[actionName] = new WebInspector.UserMetrics._Recorder(actionCode); 46 WebInspector.UserMetrics._ActionCodes = { 59 WebInspector.UserMetrics._PanelCodes = { 70 WebInspector.UserMetrics.UserAction = "UserAction"; 72 WebInspector.UserMetrics.UserActionNames = { 86 WebInspector.UserMetrics.prototype = { 89 InspectorFrontendHost.recordPanelShown(WebInspector.UserMetrics._PanelCodes[panelName] || 0) [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/audits/ |
AuditCategories.js | 33 * @extends {WebInspector.AuditCategoryImpl} 35 WebInspector.AuditCategories.PagePerformance = function() { 36 WebInspector.AuditCategoryImpl.call(this, WebInspector.AuditCategories.PagePerformance.AuditCategoryName); 39 WebInspector.AuditCategories.PagePerformance.AuditCategoryName = WebInspector.UIString("Web Page Performance"); 41 WebInspector.AuditCategories.PagePerformance.prototype = { 44 this.addRule(new WebInspector.AuditRules.UnusedCssRule(), WebInspector.AuditRule.Severity.Warning); 45 this.addRule(new WebInspector.AuditRules.CssInHeadRule(), WebInspector.AuditRule.Severity.Severe) [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/extensions/ |
ExtensionRegistryStub.js | 36 WebInspector.InspectorExtensionRegistryStub = function() 40 WebInspector.InspectorExtensionRegistryStub.prototype = { 46 var InspectorExtensionRegistry = new WebInspector.InspectorExtensionRegistryStub();
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/ |
ExtensionServerProxy.js | 10 WebInspector.ExtensionServerAPI = function() { } 12 WebInspector.ExtensionServerAPI.prototype = { 22 WebInspector.ExtensionServerProxy = function() 26 WebInspector.ExtensionServerProxy._ensureExtensionServer = function() 28 if (!WebInspector.extensionServer) 29 WebInspector.extensionServer = self.runtime.instance(WebInspector.ExtensionServerAPI); 32 WebInspector.ExtensionServerProxy.prototype = { 53 WebInspector.ExtensionServerProxy._ensureExtensionServer(); 54 WebInspector.extensionServer.addExtensions(this._pendingExtensions) [all...] |
InspectElementModeController.js | 32 WebInspector.InspectElementModeController = function() 34 this._toggleSearchButton = new WebInspector.StatusBarButton(WebInspector.UIString("Select an element in the page to inspect it."), "node-search-status-bar-item"); 35 this._shortcut = WebInspector.InspectElementModeController.createShortcut(); 40 * @return {!WebInspector.KeyboardShortcut.Descriptor} 42 WebInspector.InspectElementModeController.createShortcut = function() 44 return WebInspector.KeyboardShortcut.makeDescriptor("c", WebInspector.KeyboardShortcut.Modifiers.CtrlOrMeta | WebInspector.KeyboardShortcut.Modifiers.Shift); 47 WebInspector.InspectElementModeController.prototype = [all...] |
ShortcutsScreen.js | 34 WebInspector.ShortcutsScreen = function() 36 /** @type {!Object.<string, !WebInspector.ShortcutsSection>} */ 40 WebInspector.ShortcutsScreen.prototype = { 43 * @return {!WebInspector.ShortcutsSection} 49 this._sections[name] = section = new WebInspector.ShortcutsSection(name); 54 * @return {!WebInspector.View} 67 var view = new WebInspector.View(); 70 view.element.createChild("header").createChild("h3").createTextChild(WebInspector.UIString("Shortcuts")); 81 noteLink.createTextChild(WebInspector.UIString("Full list of keyboard shortcuts and gestures")); 89 * @type {!WebInspector.ShortcutsScreen [all...] |
DockController.js | 33 * @extends {WebInspector.Object} 36 WebInspector.DockController = function(canDock) 40 this._dockSide = WebInspector.DockController.State.Undocked; 45 WebInspector.settings.currentDockState = WebInspector.settings.createSetting("currentDockState", ""); 46 WebInspector.settings.lastDockState = WebInspector.settings.createSetting("lastDockState", ""); 49 WebInspector.DockController.State = { 59 WebInspector.DockController.Events = { 65 WebInspector.DockController.prototype = [all...] |
HelpScreen.js | 34 * @extends {WebInspector.VBox} 36 WebInspector.HelpScreen = function(title) 38 WebInspector.VBox.call(this); 56 * @type {?WebInspector.HelpScreen} 58 WebInspector.HelpScreen._visibleScreen = null; 60 WebInspector.HelpScreen.prototype = { 71 var visibleHelpScreen = WebInspector.HelpScreen._visibleScreen; 77 WebInspector.HelpScreen._visibleScreen = this; 78 WebInspector.GlassPane.DefaultFocusedViewStack.push(this); 79 this.show(WebInspector.inspectorView.element) [all...] |
ExecutionContextSelector.js | 7 * @implements {WebInspector.TargetManager.Observer} 9 WebInspector.ExecutionContextSelector = function() 11 WebInspector.targetManager.observeTargets(this); 12 WebInspector.context.addFlavorChangeListener(WebInspector.ExecutionContext, this._executionContextChanged, this); 13 WebInspector.context.addFlavorChangeListener(WebInspector.Target, this._targetChanged, this); 15 WebInspector.targetManager.addModelListener(WebInspector.RuntimeModel, WebInspector.RuntimeModel.Events.ExecutionContextCreated, this._onExecutionContextCreated, this) [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/layers/ |
LayerDetailsView.js | 33 * @extends {WebInspector.VBox} 35 WebInspector.LayerDetailsView = function() 37 WebInspector.VBox.call(this); 39 this._emptyView = new WebInspector.EmptyView(WebInspector.UIString("Select a layer to see its details")); 46 WebInspector.LayerDetailsView.Events = { 53 WebInspector.LayerDetailsView.CompositingReasonDetail = { 54 "transform3D": WebInspector.UIString("Composition due to association with an element with a CSS 3D transform."), 55 "video": WebInspector.UIString("Composition due to association with a <video> element."), 56 "canvas": WebInspector.UIString("Composition due to the element being a <canvas> element.") [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/main/ |
HelpScreenUntilReload.js | 35 * @extends {WebInspector.HelpScreen} 37 WebInspector.HelpScreenUntilReload = function(title, message) 39 WebInspector.HelpScreen.call(this, title); 43 WebInspector.debuggerModel.addEventListener(WebInspector.DebuggerModel.Events.GlobalObjectCleared, this.hide, this); 46 WebInspector.HelpScreenUntilReload.prototype = { 52 WebInspector.debuggerModel.removeEventListener(WebInspector.DebuggerModel.Events.GlobalObjectCleared, this.hide, this); 53 WebInspector.HelpScreen.prototype.willHide.call(this); 56 __proto__: WebInspector.HelpScreen.prototyp [all...] |
RenderingOptions.js | 33 * @implements {WebInspector.TargetManager.Observer} 35 WebInspector.RenderingOptions = function() 38 * @type {!Map.<!WebInspector.Setting, string>} 41 this._mapSettingToSetter(WebInspector.settings.showPaintRects, "setShowPaintRects"); 42 this._mapSettingToSetter(WebInspector.settings.showDebugBorders, "setShowDebugBorders"); 43 this._mapSettingToSetter(WebInspector.settings.showFPSCounter, "setShowFPSCounter"); 44 this._mapSettingToSetter(WebInspector.settings.continuousPainting, "setContinuousPaintingEnabled"); 45 this._mapSettingToSetter(WebInspector.settings.showScrollBottleneckRects, "setShowScrollBottleneckRects"); 47 WebInspector.targetManager.observeTargets(this); 50 WebInspector.RenderingOptions.prototype = [all...] |
SimpleApp.js | 7 * @extends {WebInspector.App} 9 WebInspector.SimpleApp = function() 11 WebInspector.App.call(this); 14 WebInspector.SimpleApp.prototype = { 17 var rootView = new WebInspector.RootView(); 18 WebInspector.inspectorView.show(rootView.element); 19 WebInspector.inspectorView.showInitialPanel(); 23 __proto__: WebInspector.App.prototype
|
Main.js | 34 * @implements {WebInspector.Console.UIDelegate} 36 WebInspector.Main = function() 39 WebInspector.console.setUIDelegate(this); 42 * @this {WebInspector.Main} 52 WebInspector.Main.prototype = { 55 WebInspector.Revealer.reveal(WebInspector.console); 60 var extensions = self.runtime.extensions(WebInspector.StatusBarItem.Provider); 77 WebInspector.inspectorView.appendToLeftToolbar(item); 82 WebInspector.inspectorView.appendToRightToolbar(item) [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/source_frame/ |
ResourceView.js | 31 * @extends {WebInspector.VBox} 34 WebInspector.ResourceView = function(resource) 36 WebInspector.VBox.call(this); 43 WebInspector.ResourceView.prototype = { 52 __proto__: WebInspector.VBox.prototype 56 * @param {!WebInspector.Resource} resource 59 WebInspector.ResourceView.hasTextContent = function(resource) 63 if (resource.type === WebInspector.resourceTypes.Other) 69 * @param {!WebInspector.Resource} resource 70 * @return {!WebInspector.ResourceView [all...] |
GoToLineDialog.js | 33 * @extends {WebInspector.DialogDelegate} 34 * @param {!WebInspector.SourceFrame} sourceFrame 36 WebInspector.GoToLineDialog = function(sourceFrame) 38 WebInspector.DialogDelegate.call(this); 41 this.element.createChild("label").textContent = WebInspector.UIString("Go to line: "); 48 this._goButton.textContent = WebInspector.UIString("Go"); 55 * @param {!WebInspector.Panel} panel 56 * @param {function():?WebInspector.SourceFrame} sourceFrameGetter 58 WebInspector.GoToLineDialog.install = function(panel, sourceFrameGetter) 60 var goToLineShortcut = WebInspector.GoToLineDialog.createShortcut() [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/console/ |
ConsolePanel.js | 31 * @extends {WebInspector.Panel} 33 WebInspector.ConsolePanel = function() 35 WebInspector.Panel.call(this, "console"); 36 this._view = WebInspector.ConsolePanel._view(); 40 * @return {!WebInspector.ConsoleView} 42 WebInspector.ConsolePanel._view = function() 44 if (!WebInspector.ConsolePanel._consoleView) 45 WebInspector.ConsolePanel._consoleView = new WebInspector.ConsoleView(); 47 return WebInspector.ConsolePanel._consoleView [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/network/ |
RequestView.js | 33 * @extends {WebInspector.VBox} 34 * @param {!WebInspector.NetworkRequest} request 36 WebInspector.RequestView = function(request) 38 WebInspector.VBox.call(this); 45 WebInspector.RequestView.prototype = { 54 __proto__: WebInspector.VBox.prototype 58 * @param {!WebInspector.NetworkRequest} request 61 WebInspector.RequestView.hasTextContent = function(request) 65 if (request.type === WebInspector.resourceTypes.Other || request.hasErrorStatusCode()) 71 * @param {!WebInspector.NetworkRequest} reques [all...] |
NetworkItemView.js | 33 * @extends {WebInspector.TabbedPane} 34 * @param {!WebInspector.NetworkRequest} request 36 WebInspector.NetworkItemView = function(request) 38 WebInspector.TabbedPane.call(this); 41 var headersView = new WebInspector.RequestHeadersView(request); 42 this.appendTab("headers", WebInspector.UIString("Headers"), headersView); 44 this.addEventListener(WebInspector.TabbedPane.EventTypes.TabSelected, this._tabSelected, this); 46 if (request.type === WebInspector.resourceTypes.WebSocket) { 47 var frameView = new WebInspector.ResourceWebSocketFrameView(request); 48 this.appendTab("webSocketFrames", WebInspector.UIString("Frames"), frameView) [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/ |
MemoryCountersGraph.js | 33 * @extends {WebInspector.CountersGraph} 34 * @implements {WebInspector.TimelineModeView} 35 * @param {!WebInspector.TimelineModeViewDelegate} delegate 36 * @param {!WebInspector.TimelineModel} model 37 * @param {!WebInspector.TimelineUIUtils} uiUtils 39 WebInspector.MemoryCountersGraph = function(delegate, model, uiUtils) 41 WebInspector.CountersGraph.call(this, WebInspector.UIString("MEMORY"), delegate, model); 44 this._countersByName["jsHeapSizeUsed"] = this.createCounter(WebInspector.UIString("Used JS Heap"), WebInspector.UIString("JS Heap Size: %d"), "hsl(220, 90%, 43%)") [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/ |
ThreadsSidebarPane.js | 7 * @extends {WebInspector.SidebarPane} 8 * @implements {WebInspector.TargetManager.Observer} 10 WebInspector.ThreadsSidebarPane = function() 12 WebInspector.SidebarPane.call(this, WebInspector.UIString("Threads")); 13 /** @type {!Map.<!WebInspector.Target, !WebInspector.Placard>} */ 15 /** @type {!Map.<!WebInspector.Placard, !WebInspector.Target>} */ 17 /** @type {?WebInspector.Placard} * [all...] |