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

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
SortableDataGrid.js 7 * @extends {WebInspector.ViewportDataGrid}
8 * @param {!Array.<!WebInspector.DataGrid.ColumnDescriptor>} columnsArray
9 * @param {function(!WebInspector.DataGridNode, string, string, string)=} editCallback
10 * @param {function(!WebInspector.DataGridNode)=} deleteCallback
12 * @param {function(!WebInspector.ContextMenu, !WebInspector.DataGridNode)=} contextMenuCallback
14 WebInspector.SortableDataGrid = function(columnsArray, editCallback, deleteCallback, refreshCallback, contextMenuCallback)
16 WebInspector.ViewportDataGrid.call(this, columnsArray, editCallback, deleteCallback, refreshCallback, contextMenuCallback);
17 /** @type {!WebInspector.SortableDataGrid.NodeComparator} */
18 this._sortingFunction = WebInspector.SortableDataGrid.TrivialComparator
    [all...]
StatusBarButton.js 33 * @extends {WebInspector.Object}
36 WebInspector.StatusBarItem = function(elementType)
43 WebInspector.StatusBarItem.prototype = {
76 __proto__: WebInspector.Object.prototype
81 * @extends {WebInspector.StatusBarItem}
85 WebInspector.StatusBarCounter = function(counters, className)
87 WebInspector.StatusBarItem.call(this, "div");
103 WebInspector.StatusBarCounter.prototype = {
154 __proto__: WebInspector.StatusBarItem.prototype
159 * @extends {WebInspector.StatusBarItem
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
CookieParser.js 41 WebInspector.CookieParser = function()
51 WebInspector.CookieParser.KeyValue = function(key, value, position)
58 WebInspector.CookieParser.prototype = {
60 * @return {!Array.<!WebInspector.Cookie>}
69 * @return {?Array.<!WebInspector.Cookie>}
80 this._addCookie(kv, WebInspector.Cookie.Type.Request);
89 * @return {?Array.<!WebInspector.Cookie>}
99 this._addCookie(kv, WebInspector.Cookie.Type.Response);
130 * @return {?WebInspector.CookieParser.KeyValue}
147 var result = new WebInspector.CookieParser.KeyValue(keyValueMatch[1], keyValueMatch[2] && keyValueMatch[2].trim(), this._origina (…)
    [all...]
DOMStorage.js 32 * @extends {WebInspector.Object}
33 * @param {!WebInspector.DOMStorageModel} model
37 WebInspector.DOMStorage = function(model, securityOrigin, isLocalStorage)
49 WebInspector.DOMStorage.storageId = function(securityOrigin, isLocalStorage)
54 WebInspector.DOMStorage.Events = {
61 WebInspector.DOMStorage.prototype = {
66 return WebInspector.DOMStorage.storageId(this._securityOrigin, this._isLocalStorage);
106 __proto__: WebInspector.Object.prototype
111 * @extends {WebInspector.SDKModel}
112 * @param {!WebInspector.Target} targe
    [all...]
CPUProfilerModel.js 31 * @extends {WebInspector.SDKModel}
32 * @param {!WebInspector.Target} target
35 WebInspector.CPUProfilerModel = function(target)
37 WebInspector.SDKModel.call(this, WebInspector.CPUProfilerModel, target);
43 WebInspector.settings.highResolutionCpuProfiling.addChangeListener(this._configureCpuProfilerSamplingInterval, this);
46 WebInspector.CPUProfilerModel.EventTypes = {
53 WebInspector.CPUProfilerModel.prototype = {
57 var intervalUs = WebInspector.settings.highResolutionCpuProfiling.get() ? 100 : 1000;
62 WebInspector.console.error(error)
    [all...]
ResourceTreeModel.js 33 * @extends {WebInspector.SDKModel}
34 * @param {!WebInspector.Target} target
36 WebInspector.ResourceTreeModel = function(target)
38 WebInspector.SDKModel.call(this, WebInspector.ResourceTreeModel, target);
40 target.networkManager.addEventListener(WebInspector.NetworkManager.EventTypes.RequestFinished, this._onRequestFinished, this);
41 target.networkManager.addEventListener(WebInspector.NetworkManager.EventTypes.RequestUpdateDropped, this._onRequestUpdateDropped, this);
43 target.consoleModel.addEventListener(WebInspector.ConsoleModel.Events.MessageAdded, this._consoleMessageAdded, this);
44 target.consoleModel.addEventListener(WebInspector.ConsoleModel.Events.ConsoleCleared, this._consoleCleared, this);
51 target.registerPageDispatcher(new WebInspector.PageDispatcher(this))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
PaintProfilerView.js 34 * @extends {WebInspector.HBox}
36 WebInspector.PaintProfilerView = function(showImageCallback)
38 WebInspector.HBox.call(this);
42 this._progressBanner.textContent = WebInspector.UIString("Profiling\u2026");
43 this._pieChart = new WebInspector.PieChart(55, this._formatPieChartTime.bind(this));
50 this._selectionWindow = new WebInspector.OverviewGrid.Window(this._canvasContainer);
51 this._selectionWindow.addEventListener(WebInspector.OverviewGrid.Events.WindowChanged, this._onWindowChanged, this);
61 WebInspector.PaintProfilerView.Events = {
65 WebInspector.PaintProfilerView.prototype = {
72 * @param {?WebInspector.PaintProfilerSnapshot} snapsho
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/
ProfilesPanel.js 28 * @extends {WebInspector.Object}
32 WebInspector.ProfileType = function(id, name)
34 WebInspector.Object.call(this);
37 /** @type {!Array.<!WebInspector.ProfileHeader>} */
39 /** @type {?WebInspector.ProfileHeader} */
49 WebInspector.ProfileType.Events = {
56 WebInspector.ProfileType.prototype = {
136 * @return {!Array.<!WebInspector.ProfileHeader>}
141 * @param {!WebInspector.ProfileHeader} profile
143 * @this {WebInspector.ProfileType
    [all...]
CPUProfileDataGrid.js 28 * @extends {WebInspector.DataGridNode}
30 * @param {!WebInspector.TopDownProfileDataGridTree} owningTree
33 WebInspector.ProfileDataGridNode = function(profileNode, owningTree, hasChildren)
37 WebInspector.DataGridNode.call(this, null, hasChildren);
47 this.functionName = WebInspector.CPUProfileDataModel.beautifyFunctionName(profileNode.functionName);
52 WebInspector.ProfileDataGridNode.prototype = {
60 var cell = this._createValueCell(columnIdentifier) || WebInspector.DataGridNode.prototype.createCell.call(this, columnIdentifier);
119 return WebInspector.UIString("%.1f\u2009ms", time);
123 return WebInspector.UIString("%.2f\u2009%", value);
130 marker.title = WebInspector.UIString("Not optimized: %s", this._deoptReason)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/bindings/
ContentScriptProjectDecorator.js 8 WebInspector.ContentScriptProjectDecorator = function()
10 WebInspector.targetManager.addModelListener(WebInspector.RuntimeModel, WebInspector.RuntimeModel.Events.ExecutionContextCreated, this._onContextCreated, this);
11 WebInspector.workspace.addEventListener(WebInspector.Workspace.Events.ProjectAdded, this._onProjectAdded, this);
15 * @param {!WebInspector.Project} project
16 * @param {!WebInspector.ExecutionContext} context
18 WebInspector.ContentScriptProjectDecorator._updateProjectWithExtensionName = function(project, context)
24 WebInspector.ContentScriptProjectDecorator.prototype =
    [all...]
NetworkWorkspaceBinding.js 33 * @extends {WebInspector.ContentProviderBasedProjectDelegate}
34 * @param {!WebInspector.Workspace} workspace
37 * @param {!WebInspector.projectTypes} projectType
39 WebInspector.NetworkProjectDelegate = function(workspace, projectId, projectName, projectType)
43 WebInspector.ContentProviderBasedProjectDelegate.call(this, workspace, projectId, projectType);
47 WebInspector.NetworkProjectDelegate.prototype = {
64 this._displayName = WebInspector.UIString("(no domain)");
67 var parsedURL = new WebInspector.ParsedURL(this._name);
90 * @param {!WebInspector.ContentProvider} contentProvider
98 __proto__: WebInspector.ContentProviderBasedProjectDelegate.prototyp
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
Lock.js 7 * @extends {WebInspector.Object}
9 WebInspector.Lock = function()
17 WebInspector.Lock.Events = {
21 WebInspector.Lock.prototype = {
33 this.dispatchEventToListeners(WebInspector.Lock.Events.StateChanged);
40 console.error("WebInspector.Lock acquire/release calls are unbalanced " + new Error().stack);
44 this.dispatchEventToListeners(WebInspector.Lock.Events.StateChanged);
47 __proto__: WebInspector.Object.prototype
Progress.js 33 * @extends {WebInspector.EventTarget}
35 WebInspector.Progress = function()
39 WebInspector.Progress.Events = {
44 WebInspector.Progress.prototype = {
75 * @param {function(!WebInspector.Event)} listener
83 * @param {!WebInspector.Progress} parent
84 * @extends {WebInspector.Object}
86 WebInspector.CompositeProgress = function(parent)
93 parent.addEventListener(WebInspector.Progress.Events.Canceled, this._parentCanceled.bind(this));
96 WebInspector.CompositeProgress.prototype =
    [all...]
StaticContentProvider.js 7 * @implements {WebInspector.ContentProvider}
8 * @param {!WebInspector.ResourceType} contentType
11 WebInspector.StaticContentProvider = function(contentType, content)
17 WebInspector.StaticContentProvider.prototype = {
27 * @return {!WebInspector.ResourceType}
46 * @param {function(!Array.<!WebInspector.ContentProvider.SearchMatch>)} callback
51 * @this {WebInspector.StaticContentProvider}
55 callback(WebInspector.ContentProvider.performSearchInContent(this._content, query, caseSensitive, isRegex));
Throttler.js 9 WebInspector.Throttler = function(timeout)
14 /** @type {?function(!WebInspector.Throttler.FinishCallback)} */
18 WebInspector.Throttler.prototype = {
45 * @param {function(!WebInspector.Throttler.FinishCallback)} process
94 WebInspector.Throttler.FinishCallback;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/network/
RequestHTMLView.js 33 * @extends {WebInspector.RequestView}
34 * @param {!WebInspector.NetworkRequest} request
37 WebInspector.RequestHTMLView = function(request, dataURL)
39 WebInspector.RequestView.call(this, request);
44 WebInspector.RequestHTMLView.prototype = {
74 __proto__: WebInspector.RequestView.prototype
RequestPreviewView.js 33 * @extends {WebInspector.RequestContentView}
34 * @param {!WebInspector.NetworkRequest} request
35 * @param {!WebInspector.View} responseView
37 WebInspector.RequestPreviewView = function(request, responseView)
39 WebInspector.RequestContentView.call(this, request);
43 WebInspector.RequestPreviewView.prototype = {
67 return this._createMessageView(WebInspector.UIString("This request has no preview available."));
72 * @return {!WebInspector.EmptyView}
76 return new WebInspector.EmptyView(message);
80 * @return {?WebInspector.RequestJSONView
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/resources/
IndexedDBViews.js 33 * @extends {WebInspector.VBox}
34 * @param {!WebInspector.IndexedDBModel.Database} database
36 WebInspector.IDBDatabaseView = function(database)
38 WebInspector.VBox.call(this);
66 WebInspector.IDBDatabaseView.prototype = {
82 this._securityOriginTreeElement.title = this._formatHeader(WebInspector.UIString("Security origin"), this._database.databaseId.securityOrigin);
83 this._nameTreeElement.title = this._formatHeader(WebInspector.UIString("Name"), this._database.databaseId.name);
84 this._stringVersionTreeElement.title = this._formatHeader(WebInspector.UIString("String Version"), this._database.version);
85 this._intVersionTreeElement.title = this._formatHeader(WebInspector.UIString("Integer Version"), this._database.intVersion);
89 * @param {!WebInspector.IndexedDBModel.Database} databas
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
ScriptFormatter.js 34 WebInspector.Formatter = function()
39 * @param {!WebInspector.ResourceType} contentType
40 * @return {!WebInspector.Formatter}
42 WebInspector.Formatter.createFormatter = function(contentType)
44 if (contentType === WebInspector.resourceTypes.Script || contentType === WebInspector.resourceTypes.Document || contentType === WebInspector.resourceTypes.Stylesheet)
45 return new WebInspector.ScriptFormatter();
46 return new WebInspector.IdentityFormatter();
55 WebInspector.Formatter.locationToPosition = function(lineEndings, lineNumber, columnNumber
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/settings/
SettingsScreen.js 34 * @extends {WebInspector.HelpScreen}
36 WebInspector.SettingsScreen = function(onHide)
38 WebInspector.HelpScreen.call(this);
44 this._tabbedPane = new WebInspector.TabbedPane();
47 settingsLabelElement.createTextChild(WebInspector.UIString("Settings"));
50 this._tabbedPane.appendTab(WebInspector.SettingsScreen.Tabs.General, WebInspector.UIString("General"), new WebInspector.GenericSettingsTab());
51 this._tabbedPane.appendTab(WebInspector.SettingsScreen.Tabs.Workspace, WebInspector.UIString("Workspace"), new WebInspector.WorkspaceSettingsTab())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/audits/
AuditFormatters.js 34 WebInspector.AuditFormatters = function()
38 WebInspector.AuditFormatters.Registry = {
68 parent.appendChild(WebInspector.auditFormatters.apply(arguments[arg]));
96 // FIXME: use WebInspector.Linkifier
97 return WebInspector.linkifyResourceAsNode(url, line, "console-message-url webkit-html-resource-link");
101 WebInspector.AuditFormatters.prototype = {
116 formatter = WebInspector.AuditFormatters.Registry.text;
124 formatter = WebInspector.AuditFormatters.Registry.concat;
127 formatter = WebInspector.AuditFormatters.Registry[value.type];
153 WebInspector.auditFormatters = new WebInspector.AuditFormatters()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
CookiesTable.js 33 * @extends {WebInspector.VBox}
38 WebInspector.CookiesTable = function(expandable, refreshCallback, selectedCallback)
40 WebInspector.VBox.call(this);
46 {id: "name", title: WebInspector.UIString("Name"), sortable: true, disclosure: expandable, sort: WebInspector.DataGrid.Order.Ascending, longText: true, weight: 24},
47 {id: "value", title: WebInspector.UIString("Value"), sortable: true, longText: true, weight: 34},
48 {id: "domain", title: WebInspector.UIString("Domain"), sortable: true, weight: 7},
49 {id: "path", title: WebInspector.UIString("Path"), sortable: true, weight: 7},
50 {id: "expires", title: WebInspector.UIString("Expires / Max-Age"), sortable: true, weight: 7},
51 {id: "size", title: WebInspector.UIString("Size"), sortable: true, align: WebInspector.DataGrid.Align.Right, weight: 7}
    [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...]
FilterBar.js 33 * @extends {WebInspector.Object}
35 WebInspector.FilterBar = function()
41 this._filterButton = new WebInspector.StatusBarButton(WebInspector.UIString("Filter"), "filters-toggle", 3);
47 WebInspector.FilterBar.Events = {
51 WebInspector.FilterBar.FilterBarState = {
57 WebInspector.FilterBar.prototype = {
63 this._stateSetting = WebInspector.settings.createSetting("filterBar-" + name + "-toggled", false);
68 * @return {!WebInspector.StatusBarButton}
92 * @param {!WebInspector.FilterUI} filte
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/
HeapSnapshotLoader.js 33 * @param {!WebInspector.HeapSnapshotWorkerDispatcher} dispatcher
35 WebInspector.HeapSnapshotLoader = function(dispatcher)
38 this._progress = new WebInspector.HeapSnapshotProgress(dispatcher);
41 WebInspector.HeapSnapshotLoader.prototype = {
62 * @return {!WebInspector.JSHeapSnapshot}
67 var result = new WebInspector.JSHeapSnapshot(this._snapshot, this._progress, showHiddenData);
139 var closingBracketIndex = WebInspector.TextUtils.findBalancedCurlyBrackets(this._json);

Completed in 811 milliseconds

1 2 3 45 6 7 8 91011>>