Index: Source/devtools/front_end/bindings/FileSystemWorkspaceBinding.js |
diff --git a/Source/devtools/front_end/bindings/FileSystemWorkspaceBinding.js b/Source/devtools/front_end/bindings/FileSystemWorkspaceBinding.js |
index bf40f7f6d11a8ba60f1ec05865d4806bf11054a1..08d0c80cdcd6d9e5f8f39b377065c9220261eb82 100644 |
--- a/Source/devtools/front_end/bindings/FileSystemWorkspaceBinding.js |
+++ b/Source/devtools/front_end/bindings/FileSystemWorkspaceBinding.js |
@@ -209,7 +209,7 @@ WebInspector.FileSystemWorkspaceBinding.FileSystem = function(fileSystemWorkspac |
WebInspector.Object.call(this); |
this._fileSystemWorkspaceBinding = fileSystemWorkspaceBinding; |
this._fileSystem = isolatedFileSystem; |
- this._fileSystemBaseURL = "file://" + this._fileSystem.normalizedPath() + "/"; |
+ this._fileSystemBaseURL = "filesystem:" + this._fileSystem.normalizedPath() + "/"; |
pfeldman
2015/08/13 21:15:46
We use file:/// for origin urls so that we could q
wes
2015/08/14 00:55:04
Some APIs returned file:/// URLs, some returned fi
pfeldman
2015/08/17 21:15:51
They serve different purposes. file:/// is to poin
|
this._fileSystemProjectURL = "filesystem:" + this._fileSystem.normalizedPath(); |
this._workspace = workspace; |
// FIXME: This dependency should be removed from here once we do not need URL to create a UISourceCode. |