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

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
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 DDebuggerScriptMapping.js33 * @param {!WebInspector.DebuggerModel} debuggerModel
34 * @param {!WebInspector.Workspace} workspace
35 * @param {!WebInspector.NetworkWorkspaceBinding} networkWorkspaceBinding
37 WebInspector.DebuggerScriptMapping = function(debuggerModel, workspace, networkWorkspaceBinding)
39 this._defaultMapping = new WebInspector.DefaultScriptMapping(debuggerModel, workspace);
40 this._resourceMapping = new WebInspector.ResourceScriptMapping(debuggerModel, workspace);
41 this._compilerMapping = new WebInspector.CompilerScriptMapping(debuggerModel, workspace, networkWorkspaceBinding);
43 debuggerModel.addEventListener(WebInspector.DebuggerModel.Events.ParsedScriptSource, this._parsedScriptSource, this);
44 debuggerModel.addEventListener(WebInspector.DebuggerModel.Events.FailedToParseScriptSource, this._parsedScriptSource, this);
47 WebInspector
[all...]
H A DNetworkLog.js33 * @extends {WebInspector.TargetAware}
34 * @param {!WebInspector.Target} target
36 WebInspector.NetworkLog = function(target)
38 WebInspector.TargetAware.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
[all...]
H A DFileUtils.js34 WebInspector.OutputStreamDelegate = function()
38 WebInspector.OutputStreamDelegate.prototype = {
44 * @param {!WebInspector.ChunkedReader} reader
49 * @param {!WebInspector.ChunkedReader} reader
58 WebInspector.OutputStream = function()
62 WebInspector.OutputStream.prototype = {
65 * @param {function(!WebInspector.OutputStream)=} callback
75 WebInspector.ChunkedReader = function()
79 WebInspector.ChunkedReader.prototype = {
100 * @implements {WebInspector
[all...]
H A DSourceMapping.js34 WebInspector.SourceMapping = function()
38 WebInspector.SourceMapping.prototype = {
40 * @param {!WebInspector.RawLocation} rawLocation
41 * @return {?WebInspector.UILocation}
46 * @param {!WebInspector.UISourceCode} uiSourceCode
49 * @return {?WebInspector.RawLocation}
61 * @extends {WebInspector.SourceMapping}
63 WebInspector.ScriptSourceMapping = function()
67 WebInspector.ScriptSourceMapping.prototype = {
69 * @param {!WebInspector
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
H A DUIUtils.js40 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
[all...]
H A DCheckbox.js32 WebInspector.Checkbox = function(label, className, tooltip)
45 WebInspector.Checkbox.prototype = {
H A DShowMoreDataGridNode.js33 * @extends {WebInspector.DataGridNode}
39 WebInspector.ShowMoreDataGridNode = function(callback, startPosition, endPosition, chunkSize)
41 WebInspector.DataGridNode.call(this, {summaryRow:true}, false);
50 this.showNext.textContent = WebInspector.UIString("Show %d before", this._chunkSize);
59 this.showLast.textContent = WebInspector.UIString("Show %d after", this._chunkSize);
65 WebInspector.ShowMoreDataGridNode.prototype = {
91 this.showAll.textContent = WebInspector.UIString("Show all %d", totalSize);
98 WebInspector.DataGridNode.prototype.createCells.call(this);
151 __proto__: WebInspector.DataGridNode.prototype
97 WebInspector.DataGridNode.prototype.createCells.call(this); class
H A DSidebarTreeElement.js30 WebInspector.SidebarSectionTreeElement = function(title, representedObject, hasChildren)
36 WebInspector.SidebarSectionTreeElement.prototype = {
82 WebInspector.SidebarTreeElement = function(className, title, subtitle, representedObject, hasChildren)
105 WebInspector.SidebarTreeElement.prototype = {
H A DStackView.js31 * @extends {WebInspector.VBox}
34 WebInspector.StackView = function(isVertical)
36 WebInspector.VBox.call(this);
41 WebInspector.StackView.prototype = {
43 * @param {!WebInspector.View} view
47 * @return {!WebInspector.SplitView}
51 var splitView = new WebInspector.SplitView(this._isVertical, true, sidebarSizeSettingName, defaultSidebarWidth, defaultSidebarHeight);
68 WebInspector.View.prototype.detachChildViews.call(this);
72 __proto__: WebInspector.VBox.prototype
H A DSidebarPane.js31 * @extends {WebInspector.View}
33 WebInspector.SidebarPane = function(title)
35 WebInspector.View.call(this);
49 WebInspector.SidebarPane.EventTypes = {
53 WebInspector.SidebarPane.prototype = {
98 WebInspector.View.prototype.wasShown.call(this);
99 this.dispatchEventToListeners(WebInspector.SidebarPane.EventTypes.wasShown);
102 __proto__: WebInspector.View.prototype
108 * @param {!WebInspector.SidebarPane} pane
110 WebInspector
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DTestController.js31 WebInspector.evaluateForTestInFrontend = function(callId, script)
H A DForwardedInputEventHandler.js8 WebInspector.ForwardedInputEventHandler = function()
12 WebInspector.ForwardedInputEventHandler.prototype = {
24 WebInspector.context.setFlavor(WebInspector.ShortcutRegistry.ForwardedShortcut, WebInspector.ShortcutRegistry.ForwardedShortcut.instance)
25 WebInspector.shortcutRegistry.handleKey(WebInspector.KeyboardShortcut.makeKey(keyCode, modifiers), keyIdentifier);
26 WebInspector.context.setFlavor(WebInspector.ShortcutRegistry.ForwardedShortcut, null);
30 /** @type {!WebInspector
[all...]
H A DInspectorFrontendEventSink.js10 * @extends {WebInspector.Object}
12 WebInspector.InspectorFrontendEventSink = function() {
15 WebInspector.InspectorFrontendEventSink.prototype = {
18 * @param {function(!WebInspector.Event)} listener
26 WebInspector.Object.prototype.addEventListener.call(this, eventType, listener, thisObject);
31 * @param {function(!WebInspector.Event)} listener
36 WebInspector.Object.prototype.removeEventListener.call(this, eventType, listener, thisObject);
42 __proto__: WebInspector.Object.prototype
35 WebInspector.Object.prototype.removeEventListener.call(this, eventType, listener, thisObject); class
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/audits/
H A DAuditCategory.js32 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/
H A DUIString.js37 WebInspector.UIString = function(string, vararg)
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
98 var event = new WebInspector.Event(this, eventType, eventData);
112 * @param {!WebInspector.EventTarget} target
116 WebInspector.Event = function(target, type, data)
125 WebInspector.Event.prototype = {
149 * @extends {WebInspector
0 WebInspector.Object = function() { function
31 WebInspector.Object.prototype = { class
[all...]
H A DCompletionDictionary.js34 WebInspector.CompletionDictionary = function() { }
36 WebInspector.CompletionDictionary.prototype = {
70 * @implements {WebInspector.CompletionDictionary}
72 WebInspector.SampleCompletionDictionary = function() {
76 WebInspector.SampleCompletionDictionary.prototype = {
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
H A DSection.js35 WebInspector.Section = function(title, subtitle)
61 WebInspector.Section.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
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/
H A DProfileLauncherView.js33 * @extends {WebInspector.VBox}
34 * @param {!WebInspector.ProfilesPanel} profilesPanel
36 WebInspector.ProfileLauncherView = function(profilesPanel)
38 WebInspector.VBox.call(this);
53 this._loadButton.textContent = WebInspector.UIString("Load");
57 WebInspector.ProfileLauncherView.prototype = {
59 * @param {!WebInspector.ProfileType} profileType
89 this._controlButton.title = this._recordButtonEnabled ? "" : WebInspector.UIString("Another profiler is already active");
92 this._controlButton.textContent = WebInspector.UIString("Take Snapshot");
95 this._controlButton.textContent = WebInspector
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
H A DPlacard.js32 WebInspector.Placard = function(title, subtitle)
46 WebInspector.Placard.prototype = {
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/elements/
H A DRenderingOptionsView.js33 * @extends {WebInspector.VBox}
35 WebInspector.RenderingOptionsView = function()
37 WebInspector.VBox.call(this);
42 div.appendChild(WebInspector.SettingsUI.createSettingCheckbox(WebInspector.UIString("Show paint rectangles"), WebInspector.settings.showPaintRects));
43 div.appendChild(WebInspector.SettingsUI.createSettingCheckbox(WebInspector.UIString("Show composited layer borders"), WebInspector.settings.showDebugBorders));
44 div.appendChild(WebInspector
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/extensions/
H A DExtensionRegistryStub.js36 WebInspector.InspectorExtensionRegistryStub = function()
40 WebInspector.InspectorExtensionRegistryStub.prototype = {
46 var InspectorExtensionRegistry = new WebInspector.InspectorExtensionRegistryStub();
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/source_frame/
H A DResourceView.js31 * @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
[all...]

Completed in 285 milliseconds

1234567891011>>