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

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
ScriptsPanel.js 149 /** @type {!Map.<!WebInspector.UISourceCode, !WebInspector.SourceFrame>} */
219 var uiSourceCode = /** @type {WebInspector.UISourceCode} */ (event.data);
220 this._addUISourceCode(uiSourceCode);
224 * @param {WebInspector.UISourceCode} uiSourceCode
226 _addUISourceCode: function(uiSourceCode)
229 uiSourceCode.setFormatted(true);
230 if (uiSourceCode.project().isServiceProject())
232 this._navigator.addUISourceCode(uiSourceCode);
    [all...]
Workspace.js 167 /** @type {Object.<string, {uiSourceCode: WebInspector.UISourceCode, index: number}>} */
169 /** @type {Array.<WebInspector.UISourceCode>} */
216 var uiSourceCode = this.uiSourceCode(path);
217 if (uiSourceCode)
220 uiSourceCode = new WebInspector.UISourceCode(this, fileDescriptor.parentPath, fileDescriptor.name, fileDescriptor.originURL, fileDescriptor.url, fileDescriptor.contentType, fileDescriptor.isEditable);
221 uiSourceCode.isContentScript = fileDescriptor.isContentScript;
223 this._uiSourceCodesMap[path] = {uiSourceCode: uiSourceCode, index: this._uiSourceCodesList.length}
    [all...]
ExtensionServer.js 506 var uiSourceCode = WebInspector.workspace.uiSourceCodeForOriginURL(url);
507 if (!uiSourceCode) {
513 uiSourceCode.setWorkingCopy(message.content);
515 uiSourceCode.commitWorkingCopy(callbackWrapper.bind(this));
648 var uiSourceCode = /** @type {WebInspector.UISourceCode} */ (event.data);
649 this._postNotification(WebInspector.extensionAPI.Events.ResourceAdded, this._makeResource(uiSourceCode));
654 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 103 milliseconds