Index: ui/file_manager/file_manager/common/js/util.js |
diff --git a/ui/file_manager/file_manager/common/js/util.js b/ui/file_manager/file_manager/common/js/util.js |
index 757955f6e91fdb278cf7bc7b2fba8297d8eec6ed..292b67c55f58fe25739c53b591332a8e51aec86c 100644 |
--- a/ui/file_manager/file_manager/common/js/util.js |
+++ b/ui/file_manager/file_manager/common/js/util.js |
@@ -458,17 +458,6 @@ util.applyTransform = function(element, transform) { |
}; |
/** |
- * Makes filesystem: URL from the path. |
- * @param {string} path File or directory path. |
- * @return {string} URL. |
- */ |
-util.makeFilesystemUrl = function(path) { |
- path = path.split('/').map(encodeURIComponent).join('/'); |
- var prefix = 'external'; |
- return 'filesystem:' + chrome.runtime.getURL(prefix + path); |
-}; |
- |
-/** |
* Extracts path from filesystem: URL. |
* @param {string} url Filesystem URL. |
* @return {string} The path. |