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

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: Small cleanups - prefer URIs to contentURLs, revert protocol unifications, remove lambdas 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
« no previous file with comments | « Source/devtools/front_end/Runtime.js ('k') | Source/devtools/front_end/cm/simple.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..5cb9fdef8bfcbf9d9b48094beb11c4320de7c2f2 100644
--- a/Source/devtools/front_end/bindings/FileSystemWorkspaceBinding.js
+++ b/Source/devtools/front_end/bindings/FileSystemWorkspaceBinding.js
@@ -209,8 +209,8 @@ WebInspector.FileSystemWorkspaceBinding.FileSystem = function(fileSystemWorkspac
WebInspector.Object.call(this);
this._fileSystemWorkspaceBinding = fileSystemWorkspaceBinding;
this._fileSystem = isolatedFileSystem;
- this._fileSystemBaseURL = "file://" + this._fileSystem.normalizedPath() + "/";
- this._fileSystemProjectURL = "filesystem:" + this._fileSystem.normalizedPath();
+ this._fileSystemBaseURL = "filesystem:" + this._fileSystem.normalizedPath() + "/";
+ this._fileSystemProjectURL = "file://" + this._fileSystem.normalizedPath();
this._workspace = workspace;
// FIXME: This dependency should be removed from here once we do not need URL to create a UISourceCode.
this._networkMapping = networkMapping;
« no previous file with comments | « Source/devtools/front_end/Runtime.js ('k') | Source/devtools/front_end/cm/simple.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698