Index: chrome/test/data/file_manager/unit_tests/mocks/mock_file_entry.js |
diff --git a/chrome/test/data/file_manager/unit_tests/mocks/mock_file_entry.js b/chrome/test/data/file_manager/unit_tests/mocks/mock_file_entry.js |
deleted file mode 100644 |
index c16a63d395716d4dfe9ff4dbc8ad5ad327481ff5..0000000000000000000000000000000000000000 |
--- a/chrome/test/data/file_manager/unit_tests/mocks/mock_file_entry.js |
+++ /dev/null |
@@ -1,24 +0,0 @@ |
-// Copyright 2013 The Chromium Authors. All rights reserved. |
-// Use of this source code is governed by a BSD-style license that can be |
-// found in the LICENSE file. |
- |
-/** |
- * Mock class for FileEntry. |
- * |
- * @param {string} volumeId Id of the volume containing the entry. |
- * @param {string} fullPath Full path for the entry. |
- * @constructor |
- */ |
-function MockFileEntry(volumeId, fullPath) { |
- this.volumeId = volumeId; |
- this.fullPath = fullPath; |
-} |
- |
-/** |
- * Returns fake URL. |
- * |
- * @return {string} Fake URL. |
- */ |
-MockFileEntry.prototype.toURL = function() { |
- return 'filesystem:' + this.volumeId + this.fullPath; |
-}; |