Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(622)

Unified Diff: third_party/WebKit/Source/devtools/front_end/bindings/FileSystemWorkspaceBinding.js

Issue 2349343002: DevTools: introduce persistence/ module (Closed)
Patch Set: reupload Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/devtools/front_end/bindings/FileSystemWorkspaceBinding.js
diff --git a/third_party/WebKit/Source/devtools/front_end/bindings/FileSystemWorkspaceBinding.js b/third_party/WebKit/Source/devtools/front_end/bindings/FileSystemWorkspaceBinding.js
index 6ff92a378dc27ca3680d93725434b60c6ddfbc9c..b1283143735745a3af77e5ad16252a5aab011270 100644
--- a/third_party/WebKit/Source/devtools/front_end/bindings/FileSystemWorkspaceBinding.js
+++ b/third_party/WebKit/Source/devtools/front_end/bindings/FileSystemWorkspaceBinding.js
@@ -163,15 +163,6 @@ WebInspector.FileSystemWorkspaceBinding.prototype = {
}
},
- /**
- * @param {string} projectId
- * @return {string}
- */
- fileSystemPath: function(projectId)
- {
- return projectId;
- },
-
dispose: function()
{
WebInspector.EventTarget.removeEventListeners(this._eventListeners);
@@ -183,6 +174,15 @@ WebInspector.FileSystemWorkspaceBinding.prototype = {
}
/**
+ * @param {string} projectId
+ * @return {string}
+ */
+WebInspector.FileSystemWorkspaceBinding.fileSystemPath = function(projectId)
+{
+ return projectId;
+}
+
+/**
* @constructor
* @extends {WebInspector.ProjectStore}
* @implements {WebInspector.Project}

Powered by Google App Engine
This is Rietveld 408576698