HomeSort by relevance Sort by last modified time
    Searched defs:uiSourceCode (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
SourcesPanel.js 171 /** @type {!Map.<!WebInspector.UISourceCode, !WebInspector.SourceFrame>} */
260 var uiSourceCode = /** @type {!WebInspector.UISourceCode} */ (event.data);
261 this._addUISourceCode(uiSourceCode);
265 * @param {!WebInspector.UISourceCode} uiSourceCode
267 _addUISourceCode: function(uiSourceCode)
270 uiSourceCode.setFormatted(true);
271 if (uiSourceCode.project().isServiceProject())
273 this._navigator.addUISourceCode(uiSourceCode);
    [all...]
Workspace.js 174 /** @type {!Object.<string, {uiSourceCode: !WebInspector.UISourceCode, index: number}>} */
176 /** @type {!Array.<!WebInspector.UISourceCode>} */
223 var uiSourceCode = this.uiSourceCode(path);
224 if (uiSourceCode)
227 uiSourceCode = new WebInspector.UISourceCode(this, fileDescriptor.parentPath, fileDescriptor.name, fileDescriptor.originURL, fileDescriptor.url, fileDescriptor.contentType, fileDescriptor.isEditable);
228 uiSourceCode.isContentScript = fileDescriptor.isContentScript;
230 this._uiSourceCodesMap[path] = {uiSourceCode: uiSourceCode, index: this._uiSourceCodesList.length}
    [all...]
BreakpointManager.js 60 WebInspector.BreakpointManager._sourceFileId = function(uiSourceCode)
62 if (!uiSourceCode.url)
64 var deobfuscatedPrefix = uiSourceCode.formatted() ? "deobfuscated:" : "";
65 return deobfuscatedPrefix + uiSourceCode.uri();
96 * @param {!WebInspector.UISourceCode} uiSourceCode
98 _restoreBreakpoints: function(uiSourceCode)
100 var sourceFileId = WebInspector.BreakpointManager._sourceFileId(uiSourceCode);
106 var breakpointItems = this._storage.breakpointItems(uiSourceCode);
113 if (!this._breakpointsForPrimaryUISourceCode.get(uiSourceCode))
    [all...]
ExtensionServer.js 526 var uiSourceCode = WebInspector.workspace.uiSourceCodeForOriginURL(url);
527 if (!uiSourceCode) {
533 uiSourceCode.setWorkingCopy(message.content);
535 uiSourceCode.commitWorkingCopy(callbackWrapper.bind(this));
703 var uiSourceCode = /** @type {!WebInspector.UISourceCode} */ (event.data);
704 this._postNotification(WebInspector.extensionAPI.Events.ResourceAdded, this._makeResource(uiSourceCode));
709 var uiSourceCode = /** @type {!WebInspector.UISourceCode} */ (event.data.uiSourceCode);
    [all...]
NavigatorView.js 52 /** @type {!Map.<!WebInspector.UISourceCode, !WebInspector.NavigatorUISourceCodeTreeNode>} */
82 * @param {!WebInspector.UISourceCode} uiSourceCode
84 addUISourceCode: function(uiSourceCode)
86 var projectNode = this._projectNode(uiSourceCode.project());
87 var folderNode = this._folderNode(projectNode, uiSourceCode.parentPath());
88 var uiSourceCodeNode = new WebInspector.NavigatorUISourceCodeTreeNode(this, uiSourceCode);
89 this._uiSourceCodeNodes.put(uiSourceCode, uiSourceCodeNode);
91 if (uiSourceCode.url === WebInspector.inspectedPageURL)
92 this.revealUISourceCode(uiSourceCode);
    [all...]

Completed in 49 milliseconds