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

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
InspectElementModeController.js 32 WebInspector.InspectElementModeController = function()
34 this._toggleSearchButton = new WebInspector.StatusBarButton(WebInspector.UIString("Select an element in the page to inspect it."), "node-search-status-bar-item");
35 this._shortcut = WebInspector.InspectElementModeController.createShortcut();
40 * @return {!WebInspector.KeyboardShortcut.Descriptor}
42 WebInspector.InspectElementModeController.createShortcut = function()
44 return WebInspector.KeyboardShortcut.makeDescriptor("c", WebInspector.KeyboardShortcut.Modifiers.CtrlOrMeta | WebInspector.KeyboardShortcut.Modifiers.Shift);
47 WebInspector.InspectElementModeController.prototype =
    [all...]
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
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/extensions/
ExtensionView.js 33 * @extends {WebInspector.View}
38 WebInspector.ExtensionView = function(id, src, className)
40 WebInspector.View.call(this);
53 WebInspector.ExtensionView.prototype = {
57 WebInspector.extensionServer.notifyViewShown(this._id, this._frameIndex);
63 WebInspector.extensionServer.notifyViewHidden(this._id);
71 WebInspector.extensionServer.notifyViewShown(this._id, this._frameIndex);
74 __proto__: WebInspector.View.prototype
79 * @extends {WebInspector.VBox}
82 WebInspector.ExtensionNotifierView = function(id
    [all...]
ExtensionPanel.js 33 * @implements {WebInspector.Searchable}
34 * @extends {WebInspector.Panel}
38 WebInspector.ExtensionPanel = function(id, pageURL)
40 WebInspector.Panel.call(this, id);
45 this._searchableView = new WebInspector.SearchableView(this);
48 var extensionView = new WebInspector.ExtensionView(id, pageURL, "extension panel");
53 WebInspector.ExtensionPanel.prototype = {
59 return WebInspector.View.prototype.defaultFocusedElement.call(this);
73 WebInspector.extensionServer.notifySearchAction(this.name, WebInspector.extensionAPI.panels.SearchAction.CancelSearch)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
Database.js 31 * @param {!WebInspector.DatabaseModel} model
37 WebInspector.Database = function(model, id, domain, name, version)
46 WebInspector.Database.prototype = {
123 message = WebInspector.UIString("Database no longer has expected version.");
125 message = WebInspector.UIString("An unexpected error %s occurred.", errorObj.code);
137 * @extends {WebInspector.SDKModel}
138 * @param {!WebInspector.Target} target
140 WebInspector.DatabaseModel = function(target)
142 WebInspector.SDKModel.call(this, WebInspector.DatabaseModel, target)
    [all...]
PowerProfiler.js 7 * @extends {WebInspector.Object}
8 * @param {!WebInspector.Target} target
10 WebInspector.PowerProfiler = function(target)
12 WebInspector.Object.call(this);
13 this._dispatcher = new WebInspector.PowerDispatcher(this);
19 WebInspector.PowerProfiler.EventTypes = {
23 WebInspector.PowerProfiler.prototype = {
51 __proto__: WebInspector.Object.prototype
58 WebInspector.PowerDispatcher = function(profiler)
63 WebInspector.PowerDispatcher.prototype =
    [all...]
BlackboxSupport.js 5 WebInspector.BlackboxSupport = {}
11 WebInspector.BlackboxSupport._urlToRegExpString = function(url)
13 var parsedURL = new WebInspector.ParsedURL(url);
42 WebInspector.BlackboxSupport.canBlackboxURL = function(url)
44 return !!WebInspector.BlackboxSupport._urlToRegExpString(url);
50 WebInspector.BlackboxSupport.blackboxURL = function(url)
52 var regexPatterns = WebInspector.settings.skipStackFramesPattern.getAsArray();
53 var regexValue = WebInspector.BlackboxSupport._urlToRegExpString(url);
67 WebInspector.settings.skipStackFramesPattern.setAsArray(regexPatterns);
74 WebInspector.BlackboxSupport.unblackbox = function(url, isContentScript
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/source_frame/
FontView.js 30 * @extends {WebInspector.ResourceView}
33 WebInspector.FontView = function(resource)
35 WebInspector.ResourceView.call(this, resource);
40 WebInspector.FontView._fontPreviewLines = [ "ABCDEFGHIJKLM", "NOPQRSTUVWXYZ", "abcdefghijklm", "nopqrstuvwxyz", "1234567890" ];
42 WebInspector.FontView._fontId = 0;
44 WebInspector.FontView._measureFontSize = 50;
46 WebInspector.FontView.prototype = {
60 var uniqueFontName = "WebInspectorFontPreview" + (++WebInspector.FontView._fontId);
67 for (var i = 0; i < WebInspector.FontView._fontPreviewLines.length; ++i) {
70 fontPreview.createTextChild(WebInspector.FontView._fontPreviewLines[i])
    [all...]
ImageView.js 30 * @extends {WebInspector.ResourceView}
33 WebInspector.ImageView = function(resource)
35 WebInspector.ResourceView.call(this, resource);
40 WebInspector.ImageView.prototype = {
71 * @this {WebInspector.ImageView}
82 { name: WebInspector.UIString("Dimensions"), value: WebInspector.UIString("%d × %d", imagePreviewElement.naturalWidth, imagePreviewElement.naturalHeight) },
83 { name: WebInspector.UIString("File size"), value: Number.bytesToString(resourceSize) },
84 { name: WebInspector.UIString("MIME type"), value: this.resource.mimeType }
92 infoListElement.createChild("dt").textContent = WebInspector.UIString("URL")
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
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...]
ScopeChainSidebarPane.js 29 * @extends {WebInspector.SidebarPane}
31 WebInspector.ScopeChainSidebarPane = function()
33 WebInspector.SidebarPane.call(this, WebInspector.UIString("Scope Variables"));
39 WebInspector.ScopeChainSidebarPane.prototype = {
41 * @param {?WebInspector.DebuggerModel.CallFrame} callFrame
50 infoElement.textContent = WebInspector.UIString("Not Paused");
80 title = WebInspector.UIString("Local");
81 emptyPlaceholder = WebInspector.UIString("No Variables");
85 extraProperties.push(new WebInspector.RemoteObjectProperty("this", thisObject))
    [all...]
StyleSheetOutlineDialog.js 31 * @extends {WebInspector.SelectionDialogContentProvider}
32 * @param {!WebInspector.UISourceCode} uiSourceCode
35 WebInspector.StyleSheetOutlineDialog = function(uiSourceCode, selectItemCallback)
37 WebInspector.SelectionDialogContentProvider.call(this);
39 this._cssParser = new WebInspector.CSSParser();
40 this._cssParser.addEventListener(WebInspector.CSSParser.Events.RulesParsed, this.refresh.bind(this));
45 * @param {!WebInspector.View} view
46 * @param {!WebInspector.UISourceCode} uiSourceCode
49 WebInspector.StyleSheetOutlineDialog.show = function(view, uiSourceCode, selectItemCallback)
51 if (WebInspector.Dialog.currentInstance()
    [all...]
ThreadsSidebarPane.js 7 * @extends {WebInspector.SidebarPane}
8 * @implements {WebInspector.TargetManager.Observer}
10 WebInspector.ThreadsSidebarPane = function()
12 WebInspector.SidebarPane.call(this, WebInspector.UIString("Threads"));
13 /** @type {!Map.<!WebInspector.Target, !WebInspector.Placard>} */
15 /** @type {!Map.<!WebInspector.Placard, !WebInspector.Target>} */
17 /** @type {?WebInspector.Placard} *
    [all...]
CSSSourceFrame.js 33 * @extends {WebInspector.UISourceCodeFrame}
34 * @param {!WebInspector.UISourceCode} uiSourceCode
36 WebInspector.CSSSourceFrame = function(uiSourceCode)
38 WebInspector.UISourceCodeFrame.call(this, uiSourceCode);
42 WebInspector.CSSSourceFrame.prototype = {
45 var shortcutKeys = WebInspector.ShortcutsScreen.SourcesPanelShortcuts;
87 var cssUnitRange = new WebInspector.TextRange(selection.startLine, token.startColumn, selection.startLine, token.endColumn);
99 __proto__: WebInspector.UISourceCodeFrame.prototype
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
Context.js 8 WebInspector.Context = function()
17 WebInspector.Context.Events = {
21 WebInspector.Context.prototype = {
50 dispatcher.dispatchEventToListeners(WebInspector.Context.Events.FlavorChanged, flavorValue);
55 * @param {function(!WebInspector.Event)} listener
62 dispatcher = new WebInspector.Object();
65 dispatcher.addEventListener(WebInspector.Context.Events.FlavorChanged, listener, thisObject);
70 * @param {function(!WebInspector.Event)} listener
78 dispatcher.removeEventListener(WebInspector.Context.Events.FlavorChanged, listener, thisObject);
79 if (!dispatcher.hasEventListeners(WebInspector.Context.Events.FlavorChanged)
    [all...]
DropDownMenu.js 7 * @extends {WebInspector.Object}
9 WebInspector.DropDownMenu = function()
17 WebInspector.DropDownMenu.Events = {
22 WebInspector.DropDownMenu.prototype = {
25 this.dispatchEventToListeners(WebInspector.DropDownMenu.Events.BeforeShow, null);
32 this.dispatchEventToListeners(WebInspector.DropDownMenu.Events.ItemSelected, selectedOption.id);
67 __proto__: WebInspector.Object.prototype
PieChart.js 36 WebInspector.PieChart = function(size, formatter)
38 var shadowSize = WebInspector.PieChart._ShadowSizePercent;
40 this.element.appendChild(WebInspector.View.createStyleElement("pieChart.css"));
60 WebInspector.PieChart._ShadowSizePercent = 0.02;
62 WebInspector.PieChart.prototype = {
85 this._group.setAttribute("transform", "scale(" + (value / 2) + ") translate(" + (1 + WebInspector.PieChart._ShadowSizePercent) + ",1)");
ZoomManager.js 7 * @extends {WebInspector.Object}
10 WebInspector.ZoomManager = function(frontendHost)
17 WebInspector.ZoomManager.Events = {
21 WebInspector.ZoomManager.prototype = {
35 this.dispatchEventToListeners(WebInspector.ZoomManager.Events.ZoomChanged, {from: oldZoomFactor, to: this._zoomFactor});
38 __proto__: WebInspector.Object.prototype
42 * @type {!WebInspector.ZoomManager}
44 WebInspector.zoomManager;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/workspace/
IsolatedFileSystem.js 33 * @param {!WebInspector.IsolatedFileSystemManager} manager
38 WebInspector.IsolatedFileSystem = function(manager, path, name, rootURL)
50 WebInspector.IsolatedFileSystem.errorMessage = function(error)
52 return WebInspector.UIString("File system error: %s", error.message);
59 WebInspector.IsolatedFileSystem.normalizePath = function(fileSystemPath)
61 if (WebInspector.isWin())
66 WebInspector.IsolatedFileSystem.prototype = {
82 this._normalizedPath = WebInspector.IsolatedFileSystem.normalizePath(this._path);
122 * @this {WebInspector.IsolatedFileSystem}
134 * @this {WebInspector.IsolatedFileSystem
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
UIString.js 37 WebInspector.UIString = function(string, vararg)
39 return String.vsprintf(WebInspector.localize(string), Array.prototype.slice.call(arguments, 1));
46 WebInspector.localize = function(string)
55 WebInspector.UIStringFormat = function(format)
58 this._localizedFormat = WebInspector.localize(format);
68 WebInspector.UIStringFormat._append = function(a, b)
73 WebInspector.UIStringFormat.prototype = {
81 String.standardFormatters, "", WebInspector.UIStringFormat._append, this._tokenizedFormat).formattedResult;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/
AllocationProfile.js 34 WebInspector.AllocationProfile = function(profile, liveObjectStats)
51 WebInspector.AllocationProfile.prototype = {
70 functionInfos[index++] = new WebInspector.FunctionAllocationInfo(
100 var result = new WebInspector.TopDownAllocationNode(
122 * @return {!Array.<!WebInspector.HeapSnapshotCommon.SerializedAllocationNode>}
154 * @return {!WebInspector.HeapSnapshotCommon.AllocationNodeCallers}
170 return new WebInspector.HeapSnapshotCommon.AllocationNodeCallers(nodesWithSingleCaller, branchingCallers);
175 * @return {!Array.<!WebInspector.HeapSnapshotCommon.AllocationStackFrame>}
183 result.push(new WebInspector.HeapSnapshotCommon.AllocationStackFrame(
206 * @return {!WebInspector.BottomUpAllocationNode
    [all...]
HeapSnapshotWorkerDispatcher.js 34 WebInspector.HeapSnapshotWorkerDispatcher = function(globalObject, postMessage)
41 WebInspector.HeapSnapshotWorkerDispatcher.prototype = {
62 var data = /** @type {!WebInspector.HeapSnapshotCommon.WorkerCommand } */(event.data);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/main/
HelpScreenUntilReload.js 35 * @extends {WebInspector.HelpScreen}
37 WebInspector.HelpScreenUntilReload = function(title, message)
39 WebInspector.HelpScreen.call(this, title);
43 WebInspector.debuggerModel.addEventListener(WebInspector.DebuggerModel.Events.GlobalObjectCleared, this.hide, this);
46 WebInspector.HelpScreenUntilReload.prototype = {
52 WebInspector.debuggerModel.removeEventListener(WebInspector.DebuggerModel.Events.GlobalObjectCleared, this.hide, this);
53 WebInspector.HelpScreen.prototype.willHide.call(this);
56 __proto__: WebInspector.HelpScreen.prototyp
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/network/
RequestView.js 33 * @extends {WebInspector.VBox}
34 * @param {!WebInspector.NetworkRequest} request
36 WebInspector.RequestView = function(request)
38 WebInspector.VBox.call(this);
45 WebInspector.RequestView.prototype = {
54 __proto__: WebInspector.VBox.prototype
58 * @param {!WebInspector.NetworkRequest} request
61 WebInspector.RequestView.hasTextContent = function(request)
65 if (request.type === WebInspector.resourceTypes.Other || request.hasErrorStatusCode())
71 * @param {!WebInspector.NetworkRequest} reques
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
MemoryCountersGraph.js 33 * @extends {WebInspector.CountersGraph}
34 * @implements {WebInspector.TimelineModeView}
35 * @param {!WebInspector.TimelineModeViewDelegate} delegate
36 * @param {!WebInspector.TimelineModel} model
37 * @param {!WebInspector.TimelineUIUtils} uiUtils
39 WebInspector.MemoryCountersGraph = function(delegate, model, uiUtils)
41 WebInspector.CountersGraph.call(this, WebInspector.UIString("MEMORY"), delegate, model);
44 this._countersByName["jsHeapSizeUsed"] = this.createCounter(WebInspector.UIString("Used JS Heap"), WebInspector.UIString("JS Heap Size: %d"), "hsl(220, 90%, 43%)")
    [all...]

Completed in 634 milliseconds

1 23 4 5 6 7 8 91011>>