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

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
InspectorFrontendAPI.js 89 var projectDelegate = WebInspector.fileSystemWorkspaceProvider.delegate(fileSystemPath);
90 projectDelegate.indexingTotalWorkCalculated(requestId, totalWork);
95 var projectDelegate = WebInspector.fileSystemWorkspaceProvider.delegate(fileSystemPath);
96 projectDelegate.indexingWorked(requestId, worked);
101 var projectDelegate = WebInspector.fileSystemWorkspaceProvider.delegate(fileSystemPath);
102 projectDelegate.indexingDone(requestId);
107 var projectDelegate = WebInspector.fileSystemWorkspaceProvider.delegate(fileSystemPath);
108 projectDelegate.searchCompleted(requestId, files);
FileSystemProjectDelegate.js 33 * @implements {WebInspector.ProjectDelegate}
439 this.dispatchEventToListeners(WebInspector.ProjectDelegate.Events.FileAdded, fileDescriptor);
447 this.dispatchEventToListeners(WebInspector.ProjectDelegate.Events.FileRemoved, path);
452 this.dispatchEventToListeners(WebInspector.ProjectDelegate.Events.Reset, null);
485 var projectDelegate = new WebInspector.FileSystemProjectDelegate(fileSystem, this._workspace)
486 this._projectDelegates[projectDelegate.id()] = projectDelegate;
487 console.assert(!this._workspace.project(projectDelegate.id()));
488 this._workspace.addProject(projectDelegate);
489 projectDelegate.populate()
    [all...]
Workspace.js 56 WebInspector.ProjectDelegate = function() { }
58 WebInspector.ProjectDelegate.Events = {
64 WebInspector.ProjectDelegate.prototype = {
162 * @param {WebInspector.ProjectDelegate} projectDelegate
165 WebInspector.Project = function(workspace, projectDelegate)
172 this._projectDelegate = projectDelegate;
174 this._projectDelegate.addEventListener(WebInspector.ProjectDelegate.Events.FileAdded, this._fileAdded, this);
175 this._projectDelegate.addEventListener(WebInspector.ProjectDelegate.Events.FileRemoved, this._fileRemoved, this);
176 this._projectDelegate.addEventListener(WebInspector.ProjectDelegate.Events.Reset, this._reset, this)
    [all...]
ContentProviderBasedProjectDelegate.js 33 * @implements {WebInspector.ProjectDelegate}
279 this.dispatchEventToListeners(WebInspector.ProjectDelegate.Events.FileAdded, fileDescriptor);
290 this.dispatchEventToListeners(WebInspector.ProjectDelegate.Events.FileRemoved, path);
305 this.dispatchEventToListeners(WebInspector.ProjectDelegate.Events.Reset, null);
SimpleWorkspaceProvider.js 184 var projectDelegate = this._projectDelegate(projectName);
185 var path = projectDelegate.addFile(parentPath, name, forceUnique, url, contentProvider, isEditable, isContentScript);
186 return this._workspace.uiSourceCode(projectDelegate.id(), path);

Completed in 190 milliseconds