HomeSort by relevance Sort by last modified time
    Searched defs:WebInspector (Results 1 - 25 of 306) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
RootView.js 7 * @extends {WebInspector.VBox}
9 WebInspector.RootView = function()
11 WebInspector.VBox.call(this);
18 WebInspector.RootView.prototype = {
28 var zoom = WebInspector.zoomManager.zoomFactor();
33 WebInspector.VBox.prototype.doResize.call(this);
36 __proto__: WebInspector.VBox.prototype
Checkbox.js 32 WebInspector.Checkbox = function(label, className, tooltip)
42 WebInspector.Checkbox.prototype = {
ShowMoreDataGridNode.js 33 * @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
SidebarTreeElement.js 30 WebInspector.SidebarSectionTreeElement = function(title, representedObject, hasChildren)
36 WebInspector.SidebarSectionTreeElement.prototype = {
82 WebInspector.SidebarTreeElement = function(className, title, subtitle, representedObject, hasChildren)
103 WebInspector.SidebarTreeElement.prototype = {
ForwardedInputEventHandler.js 8 WebInspector.ForwardedInputEventHandler = function()
13 WebInspector.ForwardedInputEventHandler.prototype = {
15 * @param {!WebInspector.Event} event
28 WebInspector.context.setFlavor(WebInspector.ShortcutRegistry.ForwardedShortcut, WebInspector.ShortcutRegistry.ForwardedShortcut.instance)
29 WebInspector.shortcutRegistry.handleKey(WebInspector.KeyboardShortcut.makeKey(keyCode, modifiers), keyIdentifier);
30 WebInspector.context.setFlavor(WebInspector.ShortcutRegistry.ForwardedShortcut, null)
    [all...]
StackView.js 31 * @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
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/bindings/
ResourceUtils.js 33 * @return {?WebInspector.Resource}
35 WebInspector.resourceForURL = function(url)
37 var targets = WebInspector.targetManager.targets();
47 * @param {function(!WebInspector.Resource)} callback
49 WebInspector.forAllResources = function(callback)
51 var targets = WebInspector.targetManager.targets();
60 WebInspector.displayNameForURL = function(url)
65 var resource = WebInspector.resourceForURL(url);
69 var uiSourceCode = WebInspector.workspace.uiSourceCodeForURL(url);
73 if (!WebInspector.targetManager.inspectedPageURL()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
TestController.js 31 WebInspector.evaluateForTestInFrontend = function(callId, script)
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/audits/
AuditCategory.js 32 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/
Object.js 28 * @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 = {
150 WebInspector.EventTarget = function(
    [all...]
ModuleExtensionInterfaces.js 8 WebInspector.Renderer = function()
12 WebInspector.Renderer.prototype = {
23 WebInspector.Revealer = function()
31 WebInspector.Revealer.reveal = function(revealable, lineNumber)
35 var revealer = self.runtime.instance(WebInspector.Revealer, revealable);
40 WebInspector.Revealer.prototype = {
51 WebInspector.NodeRemoteObjectInspector = function()
55 WebInspector.NodeRemoteObjectInspector.prototype = {
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
Section.js 35 WebInspector.Section = function(title, subtitle)
61 WebInspector.Section.prototype = {
PropertiesSection.js 32 * @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/sdk/
Locks.js 6 * @return {!WebInspector.Lock}
8 WebInspector.profilingLock = function()
10 if (!WebInspector._profilingLock)
11 WebInspector._profilingLock = new WebInspector.Lock();
12 return WebInspector._profilingLock;
NetworkLog.js 33 * @extends {WebInspector.SDKObject}
34 * @param {!WebInspector.Target} target
36 WebInspector.NetworkLog = function(target)
38 WebInspector.SDKObject.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.NetworkRequest>
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
Placard.js 32 WebInspector.Placard = function(title, subtitle)
46 WebInspector.Placard.prototype = {
AddSourceMapURLDialog.js 7 * @extends {WebInspector.DialogDelegate}
10 WebInspector.AddSourceMapURLDialog = function(callback)
12 WebInspector.DialogDelegate.call(this);
15 this.element.createChild("label").textContent = WebInspector.UIString("Source map URL: ");
21 this._goButton.textContent = WebInspector.UIString("Go");
31 WebInspector.AddSourceMapURLDialog.show = function(element, callback)
33 WebInspector.Dialog.show(element, new WebInspector.AddSourceMapURLDialog(callback));
36 WebInspector.AddSourceMapURLDialog.prototype = {
39 WebInspector.setCurrentFocusElement(this._input)
    [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/main/
App.js 8 WebInspector.App = function()
12 WebInspector.App.prototype = {
19 * @type {!WebInspector.App}
21 WebInspector.app;
AdvancedApp.js 7 * @extends {WebInspector.App}
8 * @implements {WebInspector.ToolboxDelegate}
10 WebInspector.AdvancedApp = function()
12 WebInspector.App.call(this);
13 if (WebInspector.overridesSupport.responsiveDesignAvailable()) {
14 this._toggleEmulationButton = new WebInspector.StatusBarButton(WebInspector.UIString("Toggle device mode."), "emulation-status-bar-item");
15 this._toggleEmulationButton.toggled = WebInspector.overridesSupport.emulationEnabled();
17 WebInspector.overridesSupport.addEventListener(WebInspector.OverridesSupport.Events.EmulationStateChanged, this._emulationEnabledChanged, this)
    [all...]
ScreencastApp.js 7 * @extends {WebInspector.App}
8 * @implements {WebInspector.TargetManager.Observer}
10 WebInspector.ScreencastApp = function()
12 WebInspector.App.call(this);
14 var lastScreencastState = WebInspector.settings.createSetting("lastScreencastState", "left");
15 this._currentScreencastState = WebInspector.settings.createSetting("currentScreencastState", "disabled");
16 this._toggleScreencastButton = new WebInspector.StatusBarStatesSettingButton(
19 [WebInspector.UIString("Disable screencast."), WebInspector.UIString("Switch to portrait screencast."), WebInspector.UIString("Switch to landscape screencast.")]
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/toolbox/
ToolboxDelegate.js 8 WebInspector.ToolboxDelegate = function() {}
10 WebInspector.ToolboxDelegate.prototype = {
12 * @param {!WebInspector.ResponsiveDesignView} responsiveDesignView
13 * @param {!WebInspector.InspectedPagePlaceholder} placeholder
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/toolbox_bootstrap/
Toolbox.js 8 new WebInspector.Toolbox();
15 WebInspector.Toolbox = function()
20 WebInspector.zoomManager = new WebInspector.ZoomManager(window.opener.InspectorFrontendHost);
21 WebInspector.overridesSupport = window.opener.WebInspector.overridesSupport;
22 WebInspector.settings = window.opener.WebInspector.settings;
23 WebInspector.experimentsSettings = window.opener.WebInspector.experimentsSettings
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/network/
ResourceWebSocketFrameView.js 21 * @extends {WebInspector.VBox}
22 * @param {!WebInspector.NetworkRequest} request
24 WebInspector.ResourceWebSocketFrameView = function(request)
26 WebInspector.VBox.call(this);
33 {id: "data", title: WebInspector.UIString("Data"), sortable: false, weight: 88, longText: true},
34 {id: "length", title: WebInspector.UIString("Length"), sortable: false, align: WebInspector.DataGrid.Align.Right, weight: 5},
35 {id: "time", title: WebInspector.UIString("Time"), weight: 7}
38 this._dataGrid = new WebInspector.SortableDataGrid(columns, undefined, undefined, undefined, this._onContextMenu.bind(this));
40 var comparator = /** @type {!WebInspector.SortableDataGrid.NodeComparator} */ (WebInspector.ResourceWebSocketFrameNodeTimeComparator)
    [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...]

Completed in 952 milliseconds

1 2 3 4 5 6 7 8 91011>>