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

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

Issue 1264133002: Devtools: [WIP] Implement enhanced devtools extension language APIs Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Modify override dropdown to apply to console completions & transpile Created 5 years, 4 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: 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.

Powered by Google App Engine
This is Rietveld 408576698