Searched defs:WebInspector (Results 1 - 25 of 238) sorted by relevance

12345678910

/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DNetworkLog.js34 WebInspector.NetworkLog = function()
38 WebInspector.networkManager.addEventListener(WebInspector.NetworkManager.EventTypes.RequestStarted, this._onRequestStarted, this);
39 WebInspector.resourceTreeModel.addEventListener(WebInspector.ResourceTreeModel.EventTypes.MainFrameNavigated, this._onMainFrameNavigated, this);
40 WebInspector.resourceTreeModel.addEventListener(WebInspector.ResourceTreeModel.EventTypes.Load, this._onLoad, this);
41 WebInspector.resourceTreeModel.addEventListener(WebInspector.ResourceTreeModel.EventTypes.DOMContentLoaded, this._onDOMContentLoaded, this);
44 WebInspector
[all...]
H A DOverridesSupport.js33 * @extends {WebInspector.Object}
35 WebInspector.OverridesSupport = function()
37 WebInspector.resourceTreeModel.addEventListener(WebInspector.ResourceTreeModel.EventTypes.MainFrameNavigated, this._deviceMetricsChanged.bind(this), this);
41 WebInspector.settings.overrideUserAgent.addChangeListener(this._userAgentChanged, this);
42 WebInspector.settings.userAgent.addChangeListener(this._userAgentChanged, this);
44 WebInspector.settings.overrideDeviceMetrics.addChangeListener(this._deviceMetricsChanged, this);
45 WebInspector.settings.deviceMetrics.addChangeListener(this._deviceMetricsChanged, this);
46 WebInspector.settings.emulateViewport.addChangeListener(this._deviceMetricsChanged, this);
47 WebInspector
[all...]
H A DResourceUtils.js33 * @return {?WebInspector.Resource}
35 WebInspector.resourceForURL = function(url)
37 return WebInspector.resourceTreeModel.resourceForURL(url);
41 * @param {function(!WebInspector.Resource)} callback
43 WebInspector.forAllResources = function(callback)
45 WebInspector.resourceTreeModel.forAllResources(callback);
52 WebInspector.displayNameForURL = function(url)
57 var resource = WebInspector.resourceForURL(url);
61 var uiSourceCode = WebInspector.workspace.uiSourceCodeForURL(url);
65 if (!WebInspector
[all...]
H A DCheckbox.js30 WebInspector.Checkbox = function(label, className, tooltip)
43 WebInspector.Checkbox.prototype = {
H A DObject.js28 * @implements {WebInspector.EventTarget}
30 WebInspector.Object = function() {
33 WebInspector.Object.prototype = {
36 * @param {function(!WebInspector.Event)} listener
53 * @param {function(!WebInspector.Event)} listener
100 var event = new WebInspector.Event(this, eventType, eventData);
114 * @param {!WebInspector.EventTarget} target
118 WebInspector.Event = function(target, type, data)
127 WebInspector.Event.prototype = {
152 WebInspector
0 WebInspector.Object = function() { function
31 WebInspector.Object.prototype = { class
[all...]
H A DPlacard.js32 WebInspector.Placard = function(title, subtitle)
45 WebInspector.Placard.prototype = {
H A DSection.js35 WebInspector.Section = function(title, subtitle)
61 WebInspector.Section.prototype = {
H A DSidebarTreeElement.js30 WebInspector.SidebarSectionTreeElement = function(title, representedObject, hasChildren)
36 WebInspector.SidebarSectionTreeElement.prototype = {
85 WebInspector.SidebarTreeElement = function(className, title, subtitle, representedObject, hasChildren)
118 WebInspector.SidebarTreeElement.prototype = {
H A DTestController.js31 WebInspector.evaluateForTestInFrontend = function(callId, script)
H A DUIString.js37 WebInspector.UIString = function(string, vararg)
H A DFileUtils.js34 WebInspector.OutputStreamDelegate = function()
38 WebInspector.OutputStreamDelegate.prototype = {
44 * @param {!WebInspector.ChunkedReader} reader
49 * @param {!WebInspector.ChunkedReader} reader
57 WebInspector.OutputStream = function()
61 WebInspector.OutputStream.prototype = {
64 * @param {function(!WebInspector.OutputStream)=} callback
74 WebInspector.ChunkedReader = function()
78 WebInspector.ChunkedReader.prototype = {
99 * @implements {WebInspector
[all...]
H A DDebuggerScriptMapping.js33 * @param {!WebInspector.Workspace} workspace
34 * @param {!WebInspector.SimpleWorkspaceProvider} networkWorkspaceProvider
36 WebInspector.DebuggerScriptMapping = function(workspace, networkWorkspaceProvider)
38 this._defaultMapping = new WebInspector.DefaultScriptMapping(workspace);
39 this._resourceMapping = new WebInspector.ResourceScriptMapping(workspace);
40 this._compilerMapping = new WebInspector.CompilerScriptMapping(workspace, networkWorkspaceProvider);
41 this._snippetMapping = WebInspector.scriptSnippetModel.scriptMapping;
43 WebInspector.debuggerModel.addEventListener(WebInspector.DebuggerModel.Events.ParsedScriptSource, this._parsedScriptSource, this);
44 WebInspector
[all...]
H A DEventListenersSidebarPane.js32 * @extends {WebInspector.SidebarPane}
34 WebInspector.EventListenersSidebarPane = function()
36 WebInspector.SidebarPane.call(this, WebInspector.UIString("Event Listeners"));
46 option.label = WebInspector.UIString("All Nodes");
51 option.label = WebInspector.UIString("Selected Node Only");
54 var filter = WebInspector.settings.eventListenersFilter.get();
64 this._linkifier = new WebInspector.Linkifier();
67 WebInspector.EventListenersSidebarPane._objectGroupName = "event-listeners-sidebar-pane";
69 WebInspector
[all...]
H A DExtensionRegistryStub.js36 WebInspector.InspectorExtensionRegistryStub = function()
40 WebInspector.InspectorExtensionRegistryStub.prototype = {
46 var InspectorExtensionRegistry = new WebInspector.InspectorExtensionRegistryStub();
H A DLayersPanelDescriptor.js31 * @extends {WebInspector.PanelDescriptor}
33 WebInspector.LayersPanelDescriptor = function()
35 WebInspector.PanelDescriptor.call(this, "layers", WebInspector.UIString("Layers"), "LayersPanel", "LayersPanel.js");
38 WebInspector.LayersPanelDescriptor.prototype = {
39 __proto__: WebInspector.PanelDescriptor.prototype
H A DPropertiesSection.js32 * @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
H A DRenderingOptionsView.js33 * @extends {WebInspector.View}
35 WebInspector.RenderingOptionsView = function()
37 WebInspector.View.call(this);
42 div.appendChild(WebInspector.SettingsTab.createSettingCheckbox(WebInspector.UIString("Show paint rectangles"), WebInspector.settings.showPaintRects));
43 div.appendChild(WebInspector.SettingsTab.createSettingCheckbox(WebInspector.UIString("Show composited layer borders"), WebInspector.settings.showDebugBorders));
44 div.appendChild(WebInspector
[all...]
H A DSourcesPanel.js47 * @implements {WebInspector.TabbedEditorContainerDelegate}
48 * @implements {WebInspector.ContextMenu.Provider}
49 * @implements {WebInspector.Searchable}
50 * @extends {WebInspector.Panel}
51 * @param {!WebInspector.Workspace=} workspaceForTest
53 WebInspector.SourcesPanel = function(workspaceForTest)
55 WebInspector.Panel.call(this, "sources");
59 WebInspector.settings.navigatorWasOnceHidden = WebInspector.settings.createSetting("navigatorWasOnceHidden", false);
60 WebInspector
[all...]
H A DNavigatorOverlayController.js31 * @param {!WebInspector.SidebarView} parentSidebarView
32 * @param {!WebInspector.View} navigatorView
33 * @param {!WebInspector.View} editorView
35 WebInspector.NavigatorOverlayController = function(parentSidebarView, navigatorView, editorView)
44 this._navigatorShowHideButton = new WebInspector.StatusBarButton(WebInspector.UIString("Hide navigator"), "left-sidebar-show-hide-button scripts-navigator-show-hide-button", 3);
49 WebInspector.settings.navigatorHidden = WebInspector.settings.createSetting("navigatorHidden", true);
50 if (WebInspector.settings.navigatorHidden.get())
54 WebInspector
[all...]
H A DConsolePanel.js31 * @extends {WebInspector.Panel}
32 * @implements {WebInspector.ViewFactory}
34 WebInspector.ConsolePanel = function()
36 WebInspector.Panel.call(this, "console");
37 this._view = WebInspector.consoleView;
40 WebInspector.ConsolePanel.prototype = {
43 * @return {?WebInspector.View}
48 this._consoleViewWrapper = new WebInspector.View();
50 if (WebInspector.inspectorView.currentPanel() !== this)
63 WebInspector
[all...]
H A DResourceView.js31 * @extends {WebInspector.View}
34 WebInspector.ResourceView = function(resource)
36 WebInspector.View.call(this);
43 WebInspector.ResourceView.prototype = {
49 __proto__: WebInspector.View.prototype
53 * @param {!WebInspector.Resource} resource
55 WebInspector.ResourceView.hasTextContent = function(resource)
59 if (resource.type === WebInspector.resourceTypes.Other)
65 * @param {!WebInspector.Resource} resource
67 WebInspector
[all...]
H A DSidebarPane.js31 * @extends {WebInspector.View}
33 WebInspector.SidebarPane = function(title)
35 WebInspector.View.call(this);
48 WebInspector.SidebarPane.EventTypes = {
52 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
[all...]
H A DTopDownProfileDataGridTree.js28 * @extends {WebInspector.ProfileDataGridNode}
30 * @param {!WebInspector.TopDownProfileDataGridTree} owningTree
32 WebInspector.TopDownProfileDataGridNode = function(profileNode, owningTree)
36 WebInspector.ProfileDataGridNode.call(this, profileNode, owningTree, hasChildren);
41 WebInspector.TopDownProfileDataGridNode.prototype = {
48 this.appendChild(new WebInspector.TopDownProfileDataGridNode(children[i], this.tree));
72 __proto__: WebInspector.ProfileDataGridNode.prototype
77 * @extends {WebInspector.ProfileDataGridTree}
78 * @param {!WebInspector.CPUProfileView} profileView
81 WebInspector
88 WebInspector.TopDownProfileDataGridNode.prototype.populate.call(node); class
[all...]
H A DFilteredItemSelectionDialog.js33 * @extends {WebInspector.DialogDelegate}
34 * @implements {WebInspector.ViewportControl.Provider}
35 * @param {!WebInspector.SelectionDialogContentProvider} delegate
37 WebInspector.FilteredItemSelectionDialog = function(delegate)
39 WebInspector.DialogDelegate.call(this);
58 this._viewportControl = new WebInspector.ViewportControl(this);
72 WebInspector.FilteredItemSelectionDialog.prototype = {
97 WebInspector.setCurrentFocusElement(this._promptElement);
175 var filterRegex = query ? WebInspector.FilePathScoreFunction.filterRegex(query) : null;
201 * @this {WebInspector
[all...]
H A DAuditResultView.js33 * @extends {WebInspector.SidebarPaneStack}
34 * @param {!Array.<!WebInspector.AuditCategoryResult>} categoryResults
36 WebInspector.AuditResultView = function(categoryResults)
38 WebInspector.SidebarPaneStack.call(this);
46 this.addPane(new WebInspector.AuditCategoryResultPane(categoryResults[i]));
49 WebInspector.AuditResultView.prototype = {
50 __proto__: WebInspector.SidebarPaneStack.prototype
55 * @extends {WebInspector.SidebarPane}
56 * @param {!WebInspector.AuditCategoryResult} categoryResult
58 WebInspector
[all...]

Completed in 481 milliseconds

12345678910