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

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/network/
NetworkPanel.js 33 * @implements {WebInspector.Searchable}
34 * @implements {WebInspector.TargetManager.Observer}
35 * @extends {WebInspector.VBox}
36 * @param {!WebInspector.FilterBar} filterBar
37 * @param {!WebInspector.Setting} coulmnsVisibilitySetting
39 WebInspector.NetworkLogView = function(filterBar, coulmnsVisibilitySetting)
41 WebInspector.VBox.call(this);
48 /** @type {!StringMap.<!WebInspector.NetworkDataGridNode>} */
59 /** @type {!Array.<!WebInspector.NetworkLogView.Filter>} */
67 this._linkifier = new WebInspector.Linkifier()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/resources/
ResourcesPanel.js 33 * @extends {WebInspector.PanelWithSidebarTree}
34 * @implements {WebInspector.TargetManager.Observer}
36 WebInspector.ResourcesPanel = function(database)
38 WebInspector.PanelWithSidebarTree.call(this, "resources");
41 WebInspector.settings.resourcesLastSelectedItem = WebInspector.settings.createSetting("resourcesLastSelectedItem", {});
46 this.resourcesListTreeElement = new WebInspector.StorageCategoryTreeElement(this, WebInspector.UIString("Frames"), "Frames", ["frame-storage-tree-item"]);
49 this.databasesListTreeElement = new WebInspector.StorageCategoryTreeElement(this, WebInspector.UIString("Web SQL"), "Databases", ["database-storage-tree-item"])
    [all...]
CookieItemsView.js 32 * @extends {WebInspector.VBox}
34 WebInspector.CookieItemsView = function(treeElement, cookieDomain)
36 WebInspector.VBox.call(this);
40 this._deleteButton = new WebInspector.StatusBarButton(WebInspector.UIString("Delete"), "delete-storage-status-bar-item");
44 this._clearButton = new WebInspector.StatusBarButton(WebInspector.UIString("Clear"), "clear-storage-status-bar-item");
48 this._refreshButton = new WebInspector.StatusBarButton(WebInspector.UIString("Refresh"), "refresh-storage-status-bar-item");
54 this._emptyView = new WebInspector.EmptyView(WebInspector.UIString("This site has no cookies."))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/layers/
LayersPanel.js 33 * @extends {WebInspector.PanelWithSidebarTree}
34 * @implements {WebInspector.TargetManager.Observer}
36 WebInspector.LayersPanel = function()
38 WebInspector.PanelWithSidebarTree.call(this, "layers", 225);
45 WebInspector.targetManager.observeTargets(this);
49 this._layerTreeOutline = new WebInspector.LayerTreeOutline(this.sidebarTree);
50 this._layerTreeOutline.addEventListener(WebInspector.LayerTreeOutline.Events.LayerSelected, this._onObjectSelected, this);
51 this._layerTreeOutline.addEventListener(WebInspector.LayerTreeOutline.Events.LayerHovered, this._onObjectHovered, this);
53 this._rightSplitView = new WebInspector.SplitView(false, true, "layerDetailsSplitViewState");
56 this._layers3DView = new WebInspector.Layers3DView()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/bindings/
FileUtils.js 34 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.ChunkedReader
    [all...]
NetworkUISourceCodeProvider.js 33 * @param {!WebInspector.NetworkWorkspaceBinding} networkWorkspaceBinding
34 * @param {!WebInspector.Workspace} workspace
36 WebInspector.NetworkUISourceCodeProvider = function(networkWorkspaceBinding, workspace)
41 WebInspector.targetManager.addModelListener(WebInspector.ResourceTreeModel, WebInspector.ResourceTreeModel.EventTypes.ResourceAdded, this._resourceAdded, this);
42 WebInspector.targetManager.addModelListener(WebInspector.ResourceTreeModel, WebInspector.ResourceTreeModel.EventTypes.MainFrameNavigated, this._mainFrameNavigated, this);
43 WebInspector.targetManager.addModelListener(WebInspector.DebuggerModel, WebInspector.DebuggerModel.Events.Parse (…)
    [all...]
PresentationConsoleMessageHelper.js 33 * @param {!WebInspector.Workspace} workspace
35 WebInspector.PresentationConsoleMessageHelper = function(workspace)
39 /** @type {!Object.<string, !Array.<!WebInspector.ConsoleMessage>>} */
42 /** @type {!Array.<!WebInspector.PresentationConsoleMessage>} */
45 /** @type {!Map.<!WebInspector.UISourceCode, !Array.<!WebInspector.PresentationConsoleMessage>>} */
48 /** @type {!Map.<!WebInspector.UISourceCode, !WebInspector.Object>} */
51 workspace.addEventListener(WebInspector.Workspace.Events.UISourceCodeRemoved, this._uiSourceCodeRemoved, this);
52 workspace.addEventListener(WebInspector.Workspace.Events.ProjectRemoved, this._projectRemoved, this)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
JavaScriptSourceFrame.js 33 * @extends {WebInspector.UISourceCodeFrame}
34 * @param {!WebInspector.SourcesPanel} scriptsPanel
35 * @param {!WebInspector.UISourceCode} uiSourceCode
37 WebInspector.JavaScriptSourceFrame = function(scriptsPanel, uiSourceCode)
40 this._breakpointManager = WebInspector.breakpointManager;
43 WebInspector.UISourceCodeFrame.call(this, uiSourceCode);
44 if (uiSourceCode.project().type() === WebInspector.projectTypes.Debugger)
47 this._popoverHelper = new WebInspector.ObjectPopoverHelper(this.textEditor.element,
52 this.textEditor.addEventListener(WebInspector.TextEditor.Events.GutterClick, this._handleGutterClick.bind(this), this);
54 this._breakpointManager.addEventListener(WebInspector.BreakpointManager.Events.BreakpointAdded, this._breakpointAdded, this)
    [all...]
WatchExpressionsSidebarPane.js 33 * @extends {WebInspector.SidebarPane}
35 WebInspector.WatchExpressionsSidebarPane = function()
37 WebInspector.SidebarPane.call(this, WebInspector.UIString("Watch Expressions"));
39 this.section = new WebInspector.WatchExpressionsSection();
45 refreshButton.title = WebInspector.UIString("Refresh");
52 addButton.title = WebInspector.UIString("Add watch expression");
55 WebInspector.context.addFlavorChangeListener(WebInspector.ExecutionContext ,this.refreshExpressions, this);
58 WebInspector.WatchExpressionsSidebarPane.prototype =
    [all...]
AdvancedSearchView.js 7 * @extends {WebInspector.VBox}
9 WebInspector.AdvancedSearchView = function()
11 WebInspector.VBox.call(this);
24 this._search.placeholder = WebInspector.UIString("Search sources");
35 this._ignoreCaseLabel.createTextChild(WebInspector.UIString("Ignore case"));
42 this._regexLabel.createTextChild(WebInspector.UIString("Regular expression"));
50 WebInspector.settings.advancedSearchConfig = WebInspector.settings.createSetting("advancedSearchConfig", new WebInspector.SearchConfig("", true, false).toPlainObject());
52 WebInspector.AdvancedSearchView._instance = this
    [all...]
NavigatorView.js 31 * @extends {WebInspector.VBox}
33 WebInspector.NavigatorView = function()
35 WebInspector.VBox.call(this);
41 this._scriptsTree = new WebInspector.NavigatorTreeOutline(scriptsTreeElement);
45 /** @type {!Map.<!WebInspector.UISourceCode, !WebInspector.NavigatorUISourceCodeTreeNode>} */
47 /** @type {!Map.<!WebInspector.NavigatorTreeNode, !StringMap.<!WebInspector.NavigatorFolderTreeNode>>} */
50 this._rootNode = new WebInspector.NavigatorRootTreeNode(this);
56 WebInspector.NavigatorView.Events =
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/elements/
EventListenersSidebarPane.js 32 * @extends {WebInspector.SidebarPane}
34 WebInspector.EventListenersSidebarPane = function()
36 WebInspector.SidebarPane.call(this, WebInspector.UIString("Event Listeners"));
43 refreshButton.title = WebInspector.UIString("Refresh");
49 option.label = WebInspector.UIString("All Nodes");
53 option.label = WebInspector.UIString("Selected Node Only");
55 var filter = WebInspector.settings.eventListenersFilter.get();
63 this._linkifier = new WebInspector.Linkifier();
64 this._refreshThrottler = new WebInspector.Throttler(0)
    [all...]
PlatformFontsSidebarPane.js 33 * @extends {WebInspector.SidebarPane}
35 WebInspector.PlatformFontsSidebarPane = function()
37 WebInspector.SidebarPane.call(this, WebInspector.UIString("Fonts"));
42 this._sectionTitle.textContent = WebInspector.UIString("Rendered Fonts");
46 WebInspector.PlatformFontsSidebarPane.prototype = {
55 * @param {?WebInspector.DOMNode} node
69 * @param {!WebInspector.Target} target
76 this._target.domModel.removeEventListener(WebInspector.DOMModel.Events.AttrModified, this._onNodeChange, this);
77 this._target.domModel.removeEventListener(WebInspector.DOMModel.Events.AttrRemoved, this._onNodeChange, this)
    [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/common/
ContentProvider.js 34 WebInspector.ContentProvider = function() { }
36 WebInspector.ContentProvider.prototype = {
43 * @return {!WebInspector.ResourceType}
56 * @param {function(!Array.<!WebInspector.ContentProvider.SearchMatch>)} callback
66 WebInspector.ContentProvider.SearchMatch = function(lineNumber, lineContent) {
76 * @return {!Array.<!WebInspector.ContentProvider.SearchMatch>}
78 WebInspector.ContentProvider.performSearchInContent = function(content, query, caseSensitive, isRegex)
88 result.push(new WebInspector.ContentProvider.SearchMatch(i, lineContent));
TextUtils.js 31 WebInspector.TextUtils = {
51 return !WebInspector.TextUtils.isStopChar(char) && !WebInspector.TextUtils.isSpaceChar(char);
60 return WebInspector.TextUtils._SpaceCharRegex.test(char);
70 if (!WebInspector.TextUtils.isWordChar(word.charAt(i)))
100 return WebInspector.TextUtils.isOpeningBraceChar(char) || WebInspector.TextUtils.isClosingBraceChar(char);
165 while (indentation < line.length && WebInspector.TextUtils.isSpaceChar(line.charAt(indentation)))
189 WebInspector.TextUtils._SpaceCharRegex = /\s/;
194 WebInspector.TextUtils.Indent =
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
NativeBreakpointsSidebarPane.js 33 * @extends {WebInspector.SidebarPane}
35 WebInspector.NativeBreakpointsSidebarPane = function(title)
37 WebInspector.SidebarPane.call(this, title);
45 this.emptyElement.textContent = WebInspector.UIString("No Breakpoints");
50 WebInspector.NativeBreakpointsSidebarPane.prototype = {
94 __proto__: WebInspector.SidebarPane.prototype
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...]
TargetsComboBoxController.js 7 * @implements {WebInspector.TargetManager.Observer}
11 WebInspector.TargetsComboBoxController = function(selectElement, elementToHide)
17 /** @type {!Map.<!WebInspector.Target, !Element>} */
20 WebInspector.context.addFlavorChangeListener(WebInspector.Target, this._targetChangedExternally, this);
21 WebInspector.targetManager.observeTargets(this);
24 WebInspector.TargetsComboBoxController.prototype = {
27 * @param {!WebInspector.Target} target
35 if (WebInspector.context.flavor(WebInspector.Target) === target
    [all...]
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...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
TimelineEventOverview.js 33 * @extends {WebInspector.TimelineOverviewBase}
34 * @param {!WebInspector.TimelineModel} model
35 * @param {!WebInspector.TimelineUIUtils} uiUtils
37 WebInspector.TimelineEventOverview = function(model, uiUtils)
39 WebInspector.TimelineOverviewBase.call(this, model);
44 var categories = WebInspector.TimelineUIUtils.categories();
46 this._fillStyles[category] = WebInspector.TimelineUIUtils.createFillStyleForCategory(this._context, 0, WebInspector.TimelineEventOverview._stripGradientHeight, categories[category]);
47 categories[category].addEventListener(WebInspector.TimelineCategory.Events.VisibilityChanged, this._onCategoryVisibilityChanged, this);
50 this._disabledCategoryFillStyle = WebInspector.TimelineUIUtils.createFillStyle(this._context, 0, WebInspector.TimelineEventOverview._stripGradien (…)
    [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/documentation/
DocumentationCatalog.js 8 WebInspector.DocumentationCatalog = function()
10 /** @type {!StringMap.<!Array.<!WebInspector.DocumentationCatalog.ItemDescriptor>>} */
12 this._loader = new WebInspector.DocumentationCatalog.Loader(this);
16 * @return {!WebInspector.DocumentationCatalog}
18 WebInspector.DocumentationCatalog.instance = function()
20 if (!WebInspector.DocumentationCatalog._instance)
21 WebInspector.DocumentationCatalog._instance = new WebInspector.DocumentationCatalog();
22 return WebInspector.DocumentationCatalog._instance;
31 WebInspector.DocumentationCatalog.ItemDescriptor = function(url, name, searchTerm
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/
HeapSnapshotView.js 33 * @implements {WebInspector.ProfileType.DataDisplayDelegate}
34 * @extends {WebInspector.VBox}
35 * @param {!WebInspector.ProfileType.DataDisplayDelegate} dataDisplayDelegate
36 * @param {!WebInspector.HeapProfileHeader} profile
38 WebInspector.HeapSnapshotView = function(dataDisplayDelegate, profile)
40 WebInspector.VBox.call(this);
44 profile.profileType().addEventListener(WebInspector.HeapSnapshotProfileType.SnapshotReceived, this._onReceiveSnapshot, this);
45 profile.profileType().addEventListener(WebInspector.ProfileType.Events.RemoveProfileHeader, this._onProfileHeaderRemoved, this);
47 if (profile.profileType().id === WebInspector.TrackingHeapSnapshotProfileType.TypeId) {
48 this._trackingOverviewGrid = new WebInspector.HeapTrackingOverviewGrid(profile)
    [all...]
HeapSnapshotCommon.js 31 WebInspector.HeapSnapshotProgressEvent = {
35 WebInspector.HeapSnapshotCommon = {
38 WebInspector.HeapSnapshotCommon.baseSystemDistance = 100000000;
41 * @param {!Array.<!WebInspector.HeapSnapshotCommon.SerializedAllocationNode>} nodesWithSingleCaller
42 * @param {!Array.<!WebInspector.HeapSnapshotCommon.SerializedAllocationNode>} branchingCallers
45 WebInspector.HeapSnapshotCommon.AllocationNodeCallers = function(nodesWithSingleCaller, branchingCallers)
47 /** @type {!Array.<!WebInspector.HeapSnapshotCommon.SerializedAllocationNode>} */
49 /** @type {!Array.<!WebInspector.HeapSnapshotCommon.SerializedAllocationNode>} */
67 WebInspector.HeapSnapshotCommon.SerializedAllocationNode = function(nodeId, functionName, scriptName, scriptId, line, column, count, size, liveCount, liveSize, hasChildren)
101 WebInspector.HeapSnapshotCommon.AllocationStackFrame = function(functionName, scriptName, scriptId, line, colum (…)
    [all...]

Completed in 235 milliseconds

1 2 3 45 6 7 8 91011>>