Upstream version 5.34.104.0
[platform/framework/web/crosswalk.git] / src / chrome / test / data / file_manager / unit_tests / mocks / mock_file_entry.js
index e66baa3..f1cbce3 100644 (file)
@@ -4,9 +4,12 @@
 
 /**
  * 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(fullPath) {
+function MockFileEntry(volumeId, fullPath) {
+  this.volumeId = volumeId;
   this.fullPath = fullPath;
 }