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

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
UISourceCode.js 43 WebInspector.UISourceCode = function(project, parentPath, name, originURL, url, contentType, isEditable)
66 WebInspector.UISourceCode.Events = {
78 WebInspector.UISourceCode.prototype = {
188 this.dispatchEventToListeners(WebInspector.UISourceCode.Events.TitleChanged, oldURI);
352 this.dispatchEventToListeners(WebInspector.UISourceCode.Events.WorkingCopyCommitted);
370 this.dispatchEventToListeners(WebInspector.UISourceCode.Events.SavedStateUpdated);
455 * @this {WebInspector.UISourceCode}
477 * @param {function(WebInspector.UISourceCode)} callback
482 * @this {WebInspector.UISourceCode}
531 this.dispatchEventToListeners(WebInspector.UISourceCode.Events.WorkingCopyChanged)
    [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 118 milliseconds