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 |
new file mode 100644 |
index 0000000000000000000000000000000000000000..313a38d30ce10cf744e94ffc47a7119553b0e412 |
--- /dev/null |
+++ b/chrome/test/data/file_manager/unit_tests/mocks/mock_file_entry.js |
@@ -0,0 +1,11 @@ |
+// 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. |
+ * @constructor |
+ */ |
+function MockFileEntry() { |
+ this.fullPath = null; |
+} |