Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / devtools / front_end / workspace / FileSystemWorkspaceBinding.js
index 7a7e217..e968868 100644 (file)
@@ -76,7 +76,7 @@ WebInspector.FileSystemWorkspaceBinding.prototype = {
     {
         var fileSystem = /** @type {!WebInspector.IsolatedFileSystem} */ (event.data);
         var boundFileSystem = new WebInspector.FileSystemWorkspaceBinding.FileSystem(this, fileSystem, this._workspace);
-        this._boundFileSystems.put(fileSystem.normalizedPath(), boundFileSystem);
+        this._boundFileSystems.set(fileSystem.normalizedPath(), boundFileSystem);
     },
 
     /**
@@ -241,6 +241,15 @@ WebInspector.FileSystemWorkspaceBinding.FileSystem.prototype = {
     },
 
     /**
+     * @return {string}
+     */
+    url: function()
+    {
+        // Overriddden by subclasses
+        return "";
+    },
+
+    /**
      * @param {string} path
      * @return {string}
      */