HomeSort by relevance Sort by last modified time
    Searched refs:WebInspector (Results 76 - 100 of 152) sorted by null

1 2 34 5 6 7

  /external/webkit/Source/WebCore/inspector/front-end/
ShortcutsHelp.js 31 WebInspector.ShortcutsHelp = function()
36 WebInspector.ShortcutsHelp.prototype = {
41 this._sections[name] = section = new WebInspector.ShortcutsSection(name);
48 this._helpScreen = new WebInspector.HelpScreen(WebInspector.UIString("Keyboard Shortcuts"));
89 WebInspector.shortcutsHelp = new WebInspector.ShortcutsHelp();
91 WebInspector.ShortcutsSection = function(name)
95 this.order = ++WebInspector.ShortcutsSection._sequenceNumber;
98 WebInspector.ShortcutsSection._sequenceNumber = 0
    [all...]
NetworkPanel.js 31 WebInspector.NetworkPanel = function()
33 WebInspector.Panel.call(this, "network");
48 this._categories = WebInspector.resourceCategories;
71 if (!WebInspector.settings.resourcesLargeRows)
72 this._setLargerResources(WebInspector.settings.resourcesLargeRows);
74 this._popoverHelper = new WebInspector.PopoverHelper(this.element, this._getPopoverAnchor.bind(this), this._showPopover.bind(this), true);
78 this.calculator = new WebInspector.NetworkTransferTimeCalculator();
83 WebInspector.networkManager.addEventListener(WebInspector.NetworkManager.EventTypes.ResourceStarted, this._onResourceStarted, this);
84 WebInspector.networkManager.addEventListener(WebInspector.NetworkManager.EventTypes.ResourceUpdated, this._onRe (…)
    [all...]
DOMBreakpointsSidebarPane.js 31 WebInspector.DOMBreakpointsSidebarPane = function()
33 WebInspector.NativeBreakpointsSidebarPane.call(this, WebInspector.UIString("DOM Breakpoints"));
43 WebInspector.UIString("Subtree Modified"),
44 WebInspector.UIString("Attribute Modified"),
45 WebInspector.UIString("Node Removed")
48 WebInspector.UIString("Break on Subtree Modifications"),
49 WebInspector.UIString("Break on Attributes Modifications"),
50 WebInspector.UIString("Break on Node Removal")
54 WebInspector.DOMBreakpointsSidebarPane.prototype =
    [all...]
NetworkManager.js 31 WebInspector.NetworkManager = function()
33 WebInspector.Object.call(this);
34 this._dispatcher = new WebInspector.NetworkDispatcher(this);
38 WebInspector.NetworkManager.EventTypes = {
46 WebInspector.NetworkManager.prototype = {
67 WebInspector.NetworkManager.prototype.__proto__ = WebInspector.Object.prototype;
69 WebInspector.NetworkDispatcher = function(manager)
78 WebInspector.NetworkDispatcher.prototype = {
113 resource.type = WebInspector.Resource.Type[cachedResource.type]
    [all...]
ElementsPanel.js 31 WebInspector.ElementsPanel = function()
33 WebInspector.Panel.call(this, "elements");
38 if (!WebInspector.settings.domWordWrap)
43 this.treeOutline = new WebInspector.ElementsTreeOutline();
50 if (this.panel.visible && WebInspector.currentFocusElement !== document.getElementById("search"))
51 WebInspector.currentFocusElement = this.element;
65 WebInspector.extensionServer.notifyObjectSelected(this.panel.name);
77 this.sidebarPanes.computedStyle = new WebInspector.ComputedStyleSidebarPane();
78 this.sidebarPanes.styles = new WebInspector.StylesSidebarPane(this.sidebarPanes.computedStyle);
79 this.sidebarPanes.metrics = new WebInspector.MetricsSidebarPane()
    [all...]
RemoteObject.js 31 WebInspector.RemoteObject = function(objectId, type, description, hasChildren)
39 WebInspector.RemoteObject.fromPrimitiveValue = function(value)
41 return new WebInspector.RemoteObject(null, typeof value, value);
44 WebInspector.RemoteObject.fromLocalObject = function(value)
46 return new WebInspector.LocalJSONObject(value);
49 WebInspector.RemoteObject.resolveNode = function(node, callback)
59 callback(WebInspector.RemoteObject.fromPayload(object));
64 WebInspector.RemoteObject.fromPayload = function(payload)
67 return new WebInspector.RemoteObject(payload.objectId, payload.type, payload.description, payload.hasChildren);
72 WebInspector.RemoteObject.type = function(remoteObject
    [all...]
ResourceTimingView.js 31 WebInspector.ResourceTimingView = function(resource)
33 WebInspector.View.call(this);
41 WebInspector.ResourceTimingView.prototype = {
48 this._emptyMsgElement.textContent = WebInspector.UIString("This request has no detailed timing info.");
51 WebInspector.View.prototype.show.call(this, parentElement);
59 WebInspector.View.prototype.show.call(this, parentElement);
67 this._tableElement = WebInspector.ResourceTimingView.createTimingTable(this._resource);
72 WebInspector.ResourceTimingView.createTimingTable = function(resource)
88 addRow(WebInspector.UIString("Proxy"), "proxy", resource.timing.proxyStart, resource.timing.proxyEnd);
91 addRow(WebInspector.UIString("DNS Lookup"), "dns", resource.timing.dnsStart, resource.timing.dnsEnd)
    [all...]
DetailedHeapshotGridNodes.js 31 WebInspector.HeapSnapshotGridNode = function(tree, hasChildren)
33 WebInspector.DataGridNode.call(this, null, hasChildren);
39 WebInspector.HeapSnapshotGridNode.prototype = {
42 var cell = WebInspector.DataGridNode.prototype.createCell.call(this, columnIdentifier);
50 WebInspector.PleaseWaitMessage.prototype.startAction(this.dataGrid.element, doPopulate.bind(this));
99 this.insertChild(new WebInspector.ShowMoreDataGridNode(this.populateChildren.bind(this, provider), this._defaultPopulateCount, length), atIndex++);
148 WebInspector.PleaseWaitMessage.prototype.startAction(this.dataGrid.element, doSort.bind(this));
152 WebInspector.HeapSnapshotGridNode.prototype.__proto__ = WebInspector.DataGridNode.prototype;
154 WebInspector.HeapSnapshotGenericObjectNode = function(tree, node
    [all...]
DatabaseQueryView.js 26 WebInspector.DatabaseQueryView = function(database)
28 WebInspector.View.call(this);
45 this.prompt = new WebInspector.TextPrompt(this.promptElement, this.completions.bind(this), " ");
48 WebInspector.DatabaseQueryView.prototype = {
51 WebInspector.View.prototype.show.call(this, parentElement);
142 var dataGrid = WebInspector.panels.resources.dataGridForResult(columnNames, values);
152 WebInspector.panels.resources.updateDatabaseTables(this.database);
160 var message = WebInspector.UIString("Database no longer has expected version.");
162 var message = WebInspector.UIString("An unexpected error %s occurred.", error.code);
196 WebInspector.DatabaseQueryView.prototype.__proto__ = WebInspector.View.prototype
    [all...]
ProfileView.js 28 WebInspector.CPUProfileView = function(profile)
30 WebInspector.View.call(this);
38 var columns = { "self": { title: WebInspector.UIString("Self"), width: "72px", sort: "descending", sortable: true },
39 "total": { title: WebInspector.UIString("Total"), width: "72px", sortable: true },
40 "average": { title: WebInspector.UIString("Average"), width: "72px", sortable: true },
41 "calls": { title: WebInspector.UIString("Calls"), width: "54px", sortable: true },
42 "function": { title: WebInspector.UIString("Function"), disclosure: true, sortable: true } };
49 this.dataGrid = new WebInspector.DataGrid(columns);
60 heavyViewOption.label = WebInspector.UIString("Heavy (Bottom Up)");
62 treeViewOption.label = WebInspector.UIString("Tree (Top Down)")
    [all...]
AuditLauncherView.js 31 WebInspector.AuditLauncherView = function(runnerCallback)
33 WebInspector.View.call(this);
51 this._headerElement.textContent = WebInspector.UIString("No audits to run");
54 WebInspector.networkManager.addEventListener(WebInspector.NetworkManager.EventTypes.ResourceStarted, this._onResourceStarted, this);
55 WebInspector.networkManager.addEventListener(WebInspector.NetworkManager.EventTypes.ResourceFinished, this._onResourceFinished, this);
58 WebInspector.AuditLauncherView.prototype = {
69 if (resource.type === WebInspector.Resource.Type.WebSocket)
79 if (resource.type === WebInspector.Resource.Type.WebSocket
    [all...]
BottomUpProfileDataGridTree.js 32 WebInspector.BottomUpProfileDataGridNode = function(/*ProfileView*/ profileView, /*ProfileNode*/ profileNode, /*BottomUpProfileDataGridTree*/ owningTree)
34 WebInspector.ProfileDataGridNode.call(this, profileView, profileNode, owningTree, this._willHaveChildren(profileNode));
39 WebInspector.BottomUpProfileDataGridNode.prototype = {
79 WebInspector.ProfileDataGridNode.prototype._restore();
89 WebInspector.ProfileDataGridNode.prototype._merge.call(this, child, shouldAbsorb);
115 var child = new WebInspector.BottomUpProfileDataGridNode(this.profileView, ancestor, this.tree);
146 WebInspector.BottomUpProfileDataGridNode.prototype.__proto__ = WebInspector.ProfileDataGridNode.prototype;
148 WebInspector.BottomUpProfileDataGridTree = function(/*ProfileView*/ aProfileView, /*ProfileNode*/ aProfileNode)
150 WebInspector.ProfileDataGridTree.call(this, aProfileView, aProfileNode)
    [all...]
HeapSnapshotProxy.js 31 WebInspector.HeapSnapshotProxy = function()
36 WebInspector.HeapSnapshotProxy.prototype = {
67 return new WebInspector.HeapSnapshotsDiffProxy(new WebInspector.HeapSnapshotsDiff(this._snapshot, className));
76 return new WebInspector.HeapSnapshotEdgesProvider(this._snapshot, nodeIndex, filter);
78 return new WebInspector.HeapSnapshotProviderProxy(createProvider.bind(this), this._extractEdgeData.bind(this));
87 return new WebInspector.HeapSnapshotNodesProvider(this._snapshot, filter);
89 return new WebInspector.HeapSnapshotProviderProxy(createProvider.bind(this), this._extractNodeData.bind(this));
94 return new WebInspector.HeapSnapshotPathFinderProxy(new WebInspector.HeapSnapshotPathFinder(this._snapshot, targetNodeIndex))
    [all...]
Panel.js 29 WebInspector.Panel = function(name)
31 WebInspector.View.call(this);
37 WebInspector.settings.installApplicationSetting(this._sidebarWidthSettingName(), undefined);
41 WebInspector.Panel.counterRightMargin = 25;
43 WebInspector.Panel.prototype = {
49 this._toolbarItem = WebInspector.Toolbar.createPanelToolbarItem(this);
60 WebInspector.View.prototype.show.call(this);
73 WebInspector.currentFocusElement = this.defaultFocusedElement;
77 WebInspector.extensionServer.notifyPanelShown(this.name);
83 WebInspector.View.prototype.hide.call(this)
    [all...]
ResourceHeadersView.js 31 WebInspector.ResourceHeadersView = function(resource)
33 WebInspector.View.call(this);
79 this._requestPayloadTreeElement = new TreeElement(WebInspector.UIString("Request Payload"), null, true);
101 WebInspector.ResourceHeadersView.prototype = {
105 this._urlTreeElement.titleHTML = "<div class=\"header-name\">" + WebInspector.UIString("Request URL") + ":</div>" +
114 this._refreshParms(WebInspector.UIString("Query String Parameters"), queryParameters, this._queryStringTreeElement);
129 this._refreshParms(WebInspector.UIString("Form Data"), formParameters, this._formDataTreeElement);
156 headerCount.textContent = WebInspector.UIString(" (%d)", parms.length);
159 var toggleTitle = this._decodeRequestParameters ? WebInspector.UIString("view URL encoded") : WebInspector.UIString("view decoded")
    [all...]
DebuggerPresentationModel.js 31 WebInspector.DebuggerPresentationModel = function()
41 WebInspector.debuggerModel.addEventListener(WebInspector.DebuggerModel.Events.DebuggerWasEnabled, this._debuggerWasEnabled, this);
42 WebInspector.debuggerModel.addEventListener(WebInspector.DebuggerModel.Events.ParsedScriptSource, this._parsedScriptSource, this);
43 WebInspector.debuggerModel.addEventListener(WebInspector.DebuggerModel.Events.FailedToParseScriptSource, this._failedToParseScriptSource, this);
44 WebInspector.debuggerModel.addEventListener(WebInspector.DebuggerModel.Events.BreakpointResolved, this._breakpointResolved, this);
45 WebInspector.debuggerModel.addEventListener(WebInspector.DebuggerModel.Events.DebuggerPaused, this._debuggerPau (…)
    [all...]
ProfileDataGridTree.js 26 WebInspector.ProfileDataGridNode = function(profileView, profileNode, owningTree, hasChildren)
31 WebInspector.DataGridNode.call(this, null, hasChildren);
48 WebInspector.ProfileDataGridNode.prototype = {
62 data["self"] = WebInspector.UIString("%.2f%%", this.selfPercent);
67 data["total"] = WebInspector.UIString("%.2f%%", this.totalPercent);
72 data["average"] = WebInspector.UIString("%.2f%%", this.averagePercent);
81 var cell = WebInspector.DataGridNode.prototype.createCell.call(this, columnIdentifier);
102 var urlElement = WebInspector.linkifyResourceAsNode(this.profileNode.url, "scripts", lineNumber, "profile-node-file");
111 WebInspector.DataGridNode.prototype.select.call(this, supressSelectedEvent);
117 WebInspector.DataGridNode.prototype.deselect.call(this, supressDeselectedEvent)
    [all...]
CSSStyleModel.js 31 WebInspector.CSSStyleModel = function()
33 new WebInspector.CSSStyleModelResourceBinding(this);
36 WebInspector.CSSStyleModel.parseRuleArrayPayload = function(ruleArray)
40 result.push(WebInspector.CSSRule.parsePayload(ruleArray[i]));
44 WebInspector.CSSStyleModel.Events = {
48 WebInspector.CSSStyleModel.prototype = {
61 result.inlineStyle = WebInspector.CSSStyleDeclaration.parsePayload(payload.inlineStyle);
63 result.computedStyle = WebInspector.CSSStyleDeclaration.parsePayload(payload.computedStyle);
64 result.matchedCSSRules = WebInspector.CSSStyleModel.parseRuleArrayPayload(payload.matchedCSSRules);
70 result.styleAttributes[name] = WebInspector.CSSStyleDeclaration.parsePayload(payloadStyleAttributes[i].style)
    [all...]
TabbedPane.js 31 WebInspector.TabbedPane = function(element)
40 WebInspector.TabbedPane.prototype = {
86 WebInspector.TabbedPane.prototype.__proto__ = WebInspector.Object.prototype;
SidebarPane.js 29 WebInspector.SidebarPane = function(title)
51 WebInspector.SidebarPane.prototype = {
128 if (isEnterKey(event) || event.keyCode === WebInspector.KeyboardShortcut.Keys.Space.code)
133 WebInspector.SidebarPane.prototype.__proto__ = WebInspector.Object.prototype;
HeapSnapshot.js 31 WebInspector.HeapSnapshotArraySlice = function(snapshot, arrayName, start, end)
41 WebInspector.HeapSnapshotArraySlice.prototype = {
48 WebInspector.HeapSnapshotEdge = function(snapshot, edges, edgeIndex)
55 WebInspector.HeapSnapshotEdge.prototype = {
58 return new WebInspector.HeapSnapshotEdge(this._snapshot, this._edges, this.edgeIndex);
103 return new WebInspector.HeapSnapshotNode(this._snapshot, this.nodeIndex);
163 WebInspector.HeapSnapshotEdgeIterator = function(edge)
168 WebInspector.HeapSnapshotEdgeIterator.prototype = {
200 WebInspector.HeapSnapshotRetainerEdge = function(snapshot, retainers, retainerIndex)
207 WebInspector.HeapSnapshotRetainerEdge.prototype =
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
WebInspector.h 41 class WebInspector : public APIObject {
45 static PassRefPtr<WebInspector> create(WebPage*);
53 // Called by WebInspector messages
66 explicit WebInspector(WebPage*);
78 // Implemented in platform WebInspector file
  /external/webkit/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/
WebInspectorShims.js 29 var WebInspector = {
53 var originalGetter = WebInspector.ProfileDataGridNode.prototype.__lookupGetter__("data");
54 WebInspector.ProfileDataGridNode.prototype.__defineGetter__("data", function() {
  /external/webkit/Source/WebKit2/WebProcess/WebPage/mac/
WebInspectorMac.mm 27 #import "WebInspector.h"
33 String WebInspector::localizedStringsURL() const
  /external/webkit/Source/WebKit2/WebProcess/WebPage/win/
WebInspectorWin.cpp 27 #include "WebInspector.h"
37 String WebInspector::localizedStringsURL() const

Completed in 305 milliseconds

1 2 34 5 6 7