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

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
ContentProviders.js 33 * @implements {WebInspector.ContentProvider}
34 * @param {!Array.<!WebInspector.Script>} scripts
36 WebInspector.ConcatenatedScriptsContentProvider = function(scripts)
41 WebInspector.ConcatenatedScriptsContentProvider.scriptOpenTag = "<script>";
42 WebInspector.ConcatenatedScriptsContentProvider.scriptCloseTag = "</script>";
44 WebInspector.ConcatenatedScriptsContentProvider.prototype = {
46 * @return {!Array.<!WebInspector.Script>}
58 var scriptOpenTagLength = WebInspector.ConcatenatedScriptsContentProvider.scriptOpenTag.length;
59 var scriptCloseTagLength = WebInspector.ConcatenatedScriptsContentProvider.scriptCloseTag.length;
83 * @return {!WebInspector.ResourceType
    [all...]
FileSystemModel.js 33 * @extends {WebInspector.SDKObject}
34 * @param {!WebInspector.Target} target
36 WebInspector.FileSystemModel = function(target)
38 WebInspector.SDKObject.call(this, target);
42 target.resourceTreeModel.addEventListener(WebInspector.ResourceTreeModel.EventTypes.SecurityOriginAdded, this._securityOriginAdded, this);
43 target.resourceTreeModel.addEventListener(WebInspector.ResourceTreeModel.EventTypes.SecurityOriginRemoved, this._securityOriginRemoved, this);
50 WebInspector.FileSystemModel.prototype = {
61 * @param {!WebInspector.Event} event
70 * @param {!WebInspector.Event} event
129 * @param {!WebInspector.FileSystemModel.FileSystem} fileSyste
    [all...]
LayerTreeModel.js 33 children: Array.<!WebInspector.TracingLayerPayload>,
43 WebInspector.TracingLayerPayload;
47 * @extends {WebInspector.SDKModel}
49 WebInspector.LayerTreeModel = function(target)
51 WebInspector.SDKModel.call(this, WebInspector.LayerTreeModel, target);
52 target.registerLayerTreeDispatcher(new WebInspector.LayerTreeDispatcher(this));
53 target.domModel.addEventListener(WebInspector.DOMModel.Events.DocumentUpdated, this._onDocumentUpdated, this);
54 /** @type {?WebInspector.LayerTreeBase} */
58 WebInspector.LayerTreeModel.Events =
    [all...]
Script.js 28 * @extends {WebInspector.SDKObject}
29 * @implements {WebInspector.ContentProvider}
30 * @param {!WebInspector.Target} target
41 WebInspector.Script = function(target, scriptId, sourceURL, startLine, startColumn, endLine, endColumn, isContentScript, sourceMapURL, hasSourceURL)
43 WebInspector.SDKObject.call(this, target);
55 WebInspector.Script.Events = {
60 WebInspector.Script.snippetSourceURLPrefix = "snippets:///";
62 WebInspector.Script.sourceURLRegex = /\n[\040\t]*\/\/[@#]\ssourceURL=\s*(\S*?)\s*$/mg;
68 WebInspector.Script._trimSourceURLComment = function(source)
70 return source.replace(WebInspector.Script.sourceURLRegex, "")
    [all...]
TracingManager.js 9 * @extends {WebInspector.Object}
10 * @implements {WebInspector.TargetManager.Observer}
12 WebInspector.TracingManager = function()
14 WebInspector.Object.call(this);
16 WebInspector.targetManager.observeTargets(this);
19 WebInspector.TracingManager.Events = {
40 WebInspector.TracingManager.EventPayload;
42 WebInspector.TracingManager.prototype = {
44 * @param {!WebInspector.Target} target
51 target.registerTracingDispatcher(new WebInspector.TracingDispatcher(this))
    [all...]
IndexedDBModel.js 33 * @extends {WebInspector.SDKModel}
35 WebInspector.IndexedDBModel = function(target)
37 WebInspector.SDKModel.call(this, WebInspector.IndexedDBModel, target);
41 target.resourceTreeModel.addEventListener(WebInspector.ResourceTreeModel.EventTypes.SecurityOriginAdded, this._securityOriginAdded, this);
42 target.resourceTreeModel.addEventListener(WebInspector.ResourceTreeModel.EventTypes.SecurityOriginRemoved, this._securityOriginRemoved, this);
44 /** @type {!Map.<!WebInspector.IndexedDBModel.DatabaseId, !WebInspector.IndexedDBModel.Database>} */
51 WebInspector.IndexedDBModel.KeyTypes = {
58 WebInspector.IndexedDBModel.KeyPathTypes =
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
TimelineLayersView.js 9 * @extends {WebInspector.VBox}
11 WebInspector.TimelineLayersView = function()
13 WebInspector.VBox.call(this);
16 this._layers3DView = new WebInspector.Layers3DView();
17 this._layers3DView.addEventListener(WebInspector.Layers3DView.Events.ObjectSelected, this._onObjectSelected, this);
18 this._layers3DView.addEventListener(WebInspector.Layers3DView.Events.ObjectHovered, this._onObjectHovered, this);
19 this._layers3DView.addEventListener(WebInspector.Layers3DView.Events.JumpToPaintEventRequested, this._jumpToPaintEvent, this);
23 WebInspector.TimelineLayersView.prototype = {
25 * @param {!WebInspector.DeferredLayerTree} deferredLayerTree
26 * @param {?Array.<!WebInspector.LayerPaintEvent>} paint
    [all...]
TimelineModel.js 33 * @extends {WebInspector.Object}
35 WebInspector.TimelineModel = function()
37 WebInspector.Object.call(this);
41 WebInspector.TimelineModel.RecordType = {
105 WebInspector.TimelineModel.Events = {
114 WebInspector.TimelineModel.MainThreadName = "main";
117 * @param {!Array.<!WebInspector.TimelineModel.Record>} recordsArray
118 * @param {?function(!WebInspector.TimelineModel.Record)|?function(!WebInspector.TimelineModel.Record,number)} preOrderCallback
119 * @param {function(!WebInspector.TimelineModel.Record)|function(!WebInspector.TimelineModel.Record,number)=} postOrderCallbac
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
Popover.js 33 * @extends {WebInspector.View}
34 * @param {!WebInspector.PopoverHelper=} popoverHelper
36 WebInspector.Popover = function(popoverHelper)
38 WebInspector.View.call(this);
50 WebInspector.Popover.prototype = {
56 * @param {?WebInspector.Popover.Orientation=} arrowDirection
64 * @param {!WebInspector.View} view
75 * @param {?WebInspector.View} view
80 * @param {?WebInspector.Popover.Orientation=} arrowDirection
89 if (WebInspector.Popover._popover
    [all...]
ResizerWidget.js 7 * @extends {WebInspector.Object}
9 WebInspector.ResizerWidget = function()
11 WebInspector.Object.call(this);
19 WebInspector.ResizerWidget.Events = {
25 WebInspector.ResizerWidget.prototype = {
113 WebInspector.elementDragStart(this._dragStart.bind(this), this._drag.bind(this), this._dragEnd.bind(this), this._isVertical ? "ns-resize" : "ew-resize", event);
125 this.dispatchEventToListeners(WebInspector.ResizerWidget.Events.ResizeStart, { startPosition: this._startPosition, currentPosition: this._startPosition });
141 this.dispatchEventToListeners(WebInspector.ResizerWidget.Events.ResizeUpdate, { startPosition: this._startPosition, currentPosition: position, shiftKey: event.shiftKey });
151 this.dispatchEventToListeners(WebInspector.ResizerWidget.Events.ResizeEnd);
155 __proto__: WebInspector.Object.prototyp
    [all...]
ShortcutRegistry.js 7 * @param {!WebInspector.ActionRegistry} actionRegistry
9 WebInspector.ShortcutRegistry = function(actionRegistry)
14 /** @type {!StringMultimap.<!WebInspector.KeyboardShortcut.Descriptor>} */
19 WebInspector.ShortcutRegistry.prototype = {
26 return this._actionRegistry.applicableActions(this._actionIdsForKey(key), WebInspector.context);
55 * @return {!Array.<!WebInspector.KeyboardShortcut.Descriptor>}
82 this.handleKey(WebInspector.KeyboardShortcut.makeKeyFromEvent(event), event.keyIdentifier, event);
94 if (WebInspector.GlassPane.DefaultFocusedViewStack.length > 1) {
115 if (!event || !WebInspector.isBeingEdited(/** @type {!Node} */ (event.target)) || /^F\d+|Control|Shift|Alt|Meta|Win|U\+001B$/.test(keyIdentifier))
121 var modifiers = WebInspector.KeyboardShortcut.Modifiers
    [all...]
InplaceEditor.js 8 WebInspector.InplaceEditor = function()
14 * @param {!WebInspector.InplaceEditor.Config=} config
17 WebInspector.InplaceEditor.startEditing = function(element, config)
20 return self.runtime.instance(WebInspector.InplaceEditor).startEditing(element, config);
22 if (!WebInspector.InplaceEditor._defaultInstance)
23 WebInspector.InplaceEditor._defaultInstance = new WebInspector.InplaceEditor();
24 return WebInspector.InplaceEditor._defaultInstance.startEditing(element, config);
27 WebInspector.InplaceEditor.prototype = {
47 WebInspector.setCurrentFocusElement(element)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
InspectorView.js 33 * @extends {WebInspector.VBox}
35 WebInspector.InspectorView = function()
37 WebInspector.VBox.call(this);
38 WebInspector.Dialog.setModalHostView(this);
39 WebInspector.GlassPane.DefaultFocusedViewStack.push(this);
43 this._drawerSplitView = new WebInspector.SplitView(false, true, "Inspector.drawerSplitViewState", 200, 200);
48 this._tabbedPane = new WebInspector.TabbedPane();
49 this._tabbedPane.setRetainTabOrder(true, self.runtime.orderComparator(WebInspector.Panel, "name", "order"));
51 this._drawer = new WebInspector.Drawer(this._drawerSplitView);
71 WebInspector["panels"] = this._panels
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
ScriptFormatterEditorAction.js 7 * @implements {WebInspector.DebuggerSourceMapping}
8 * @param {!WebInspector.Target} target
9 * @param {!WebInspector.ScriptFormatterEditorAction} editorAction
11 WebInspector.FormatterScriptMapping = function(target, editorAction)
17 WebInspector.FormatterScriptMapping.prototype = {
19 * @param {!WebInspector.DebuggerModel.Location} rawLocation
20 * @return {?WebInspector.UILocation}
24 var debuggerModelLocation = /** @type {!WebInspector.DebuggerModel.Location} */ (rawLocation);
41 * @param {!WebInspector.UISourceCode} uiSourceCode
44 * @return {?WebInspector.DebuggerModel.Location
    [all...]
UISourceCodeFrame.js 31 * @extends {WebInspector.SourceFrame}
32 * @param {!WebInspector.UISourceCode} uiSourceCode
34 WebInspector.UISourceCodeFrame = function(uiSourceCode)
37 WebInspector.SourceFrame.call(this, this._uiSourceCode);
38 WebInspector.settings.textEditorAutocompletion.addChangeListener(this._enableAutocompletionIfNeeded, this);
41 this._uiSourceCode.addEventListener(WebInspector.UISourceCode.Events.WorkingCopyChanged, this._onWorkingCopyChanged, this);
42 this._uiSourceCode.addEventListener(WebInspector.UISourceCode.Events.WorkingCopyCommitted, this._onWorkingCopyCommitted, this);
46 WebInspector.UISourceCodeFrame.prototype = {
48 * @return {!WebInspector.UISourceCode}
57 this.textEditor.setCompletionDictionary(WebInspector.settings.textEditorAutocompletion.get() ? new WebInspector.SampleCompletionDictionary() : null)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/audits/
AuditLauncherView.js 33 * @param {!WebInspector.AuditController} auditController
34 * @extends {WebInspector.VBox}
36 WebInspector.AuditLauncherView = function(auditController)
38 WebInspector.VBox.call(this);
60 this._headerElement.textContent = WebInspector.UIString("No audits to run");
63 WebInspector.targetManager.addModelListener(WebInspector.NetworkManager, WebInspector.NetworkManager.EventTypes.RequestStarted, this._onRequestStarted, this);
64 WebInspector.targetManager.addModelListener(WebInspector.NetworkManager, WebInspector.NetworkManager.EventTypes.RequestFinished, this._onRequestFinished, t (…)
    [all...]
AuditsPanel.js 33 * @extends {WebInspector.PanelWithSidebarTree}
35 WebInspector.AuditsPanel = function()
37 WebInspector.PanelWithSidebarTree.call(this, "audits");
41 this.auditsTreeElement = new WebInspector.SidebarSectionTreeElement("", {}, true);
45 this.auditsItemTreeElement = new WebInspector.AuditsSidebarTreeElement(this);
48 this.auditResultsTreeElement = new WebInspector.SidebarSectionTreeElement(WebInspector.UIString("RESULTS"), {}, true);
54 this._auditController = new WebInspector.AuditController(this);
55 this._launcherView = new WebInspector.AuditLauncherView(this._auditController);
60 WebInspector.AuditsPanel.prototype =
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/documentation/
DocumentationView.js 7 * @extends {WebInspector.View}
9 WebInspector.DocumentationView = function()
11 WebInspector.View.call(this);
20 WebInspector.DocumentationView.showDocumentationURL = function(url, searchItem)
22 if (!WebInspector.DocumentationView._view)
23 WebInspector.DocumentationView._view = new WebInspector.DocumentationView();
24 var view = WebInspector.DocumentationView._view;
26 WebInspector.inspectorView.showCloseableViewInDrawer("documentation", WebInspector.UIString("Documentation"), view)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/bindings/
CSSWorkspaceBinding.js 7 * @implements {WebInspector.TargetManager.Observer}
9 WebInspector.CSSWorkspaceBinding = function()
11 /** @type {!Map.<!WebInspector.Target, !WebInspector.CSSWorkspaceBinding.TargetInfo>} */
13 WebInspector.targetManager.observeTargets(this);
15 WebInspector.targetManager.addModelListener(WebInspector.ResourceTreeModel, WebInspector.ResourceTreeModel.EventTypes.MainFrameNavigated, this._mainFrameCreatedOrNavigated, this);
18 WebInspector.CSSWorkspaceBinding.prototype = {
20 * @param {!WebInspector.Target} targe
    [all...]
ContentProviderBasedProjectDelegate.js 33 * @implements {WebInspector.ProjectDelegate}
34 * @param {!WebInspector.Workspace} workspace
36 * @param {!WebInspector.projectTypes} type
38 WebInspector.ContentProviderBasedProjectDelegate = function(workspace, id, type)
41 /** @type {!Object.<string, !WebInspector.ContentProvider>} */
48 WebInspector.ContentProviderBasedProjectDelegate.prototype = {
133 * @param {function(boolean, string=, string=, string=, !WebInspector.ResourceType=)} callback
142 * @this {WebInspector.ContentProviderBasedProjectDelegate}
219 * @param {function(!Array.<!WebInspector.ContentProvider.SearchMatch>)} callback
228 * @param {!WebInspector.ProjectSearchConfig} searchConfi
    [all...]
ResourceScriptMapping.js 33 * @implements {WebInspector.DebuggerSourceMapping}
34 * @param {!WebInspector.DebuggerModel} debuggerModel
35 * @param {!WebInspector.Workspace} workspace
36 * @param {!WebInspector.DebuggerWorkspaceBinding} debuggerWorkspaceBinding
38 WebInspector.ResourceScriptMapping = function(debuggerModel, workspace, debuggerWorkspaceBinding)
43 this._workspace.addEventListener(WebInspector.Workspace.Events.UISourceCodeAdded, this._uiSourceCodeAdded, this);
44 this._workspace.addEventListener(WebInspector.Workspace.Events.UISourceCodeRemoved, this._uiSourceCodeRemoved, this);
48 /** @type {!Map.<!WebInspector.UISourceCode, !WebInspector.ResourceScriptFile>} */
51 debuggerModel.addEventListener(WebInspector.DebuggerModel.Events.GlobalObjectCleared, this._debuggerReset, this)
    [all...]
LiveLocation.js 7 * @param {function(!WebInspector.UILocation):(boolean|undefined)} updateDelegate
9 WebInspector.LiveLocation = function(updateDelegate)
14 WebInspector.LiveLocation.prototype = {
25 * @return {!WebInspector.UILocation}
  /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/v8/tools/
SourceMap.js 33 WebInspector = {};
34 WebInspector.ParsedURL = {};
35 WebInspector.ParsedURL.completeURL = function(){};
75 WebInspector.SourceMap = function(sourceMappingURL, payload)
77 if (!WebInspector.SourceMap.prototype._base64Map) {
79 WebInspector.SourceMap.prototype._base64Map = {};
81 WebInspector.SourceMap.prototype._base64Map[base64Digits.charAt(i)] = i;
95 * @param {function(WebInspector.SourceMap)} callback
97 WebInspector.SourceMap.load = function(sourceMapURL, compiledURL, callback)
99 NetworkAgent.loadResourceForFrontend(WebInspector.resourceTreeModel.mainFrame.id, sourceMapURL, undefined, contentLoaded.bind(this))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
Console.js 7 * @extends {WebInspector.Object}
9 WebInspector.Console = function()
11 /** @type {!Array.<!WebInspector.Console.Message>} */
18 WebInspector.Console.Events = {
25 WebInspector.Console.MessageLevel = {
34 * @param {!WebInspector.Console.MessageLevel} level
38 WebInspector.Console.Message = function(text, level, timestamp, show)
49 WebInspector.Console.UIDelegate = function()
53 WebInspector.Console.UIDelegate.prototype = {
57 WebInspector.Console.prototype =
    [all...]

Completed in 1987 milliseconds

1 2 3 4 5 67 8 91011>>