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 = {
172 * @this {WebInspector.UISourceCode}
198 this.dispatchEventToListeners(WebInspector.UISourceCode.Events.TitleChanged, oldURI);
277 * @this {WebInspector.UISourceCode}
350 this.dispatchEventToListeners(WebInspector.UISourceCode.Events.WorkingCopyCommitted);
368 * @this {WebInspector.UISourceCode}
375 this.dispatchEventToListeners(WebInspector.UISourceCode.Events.SavedStateUpdated);
461 * @this {WebInspector.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 83 milliseconds