| Index: ui/file_manager/file_manager/background/js/mock_media_scanner.js
|
| diff --git a/ui/file_manager/file_manager/background/js/mock_media_scanner.js b/ui/file_manager/file_manager/background/js/mock_media_scanner.js
|
| index 20191507ff32d0853509951aafb04a63411d301d..5c804aa82a2be1027946079aafee0480aca92c1f 100644
|
| --- a/ui/file_manager/file_manager/background/js/mock_media_scanner.js
|
| +++ b/ui/file_manager/file_manager/background/js/mock_media_scanner.js
|
| @@ -115,9 +115,6 @@ function TestScanResult(fileEntries) {
|
| /** @type {number} */
|
| this.scanDuration = 100;
|
|
|
| - /** @type {number} */
|
| - this.duplicateFileCount = 0;
|
| -
|
| /** @type {function} */
|
| this.resolveResult_;
|
|
|
| @@ -171,7 +168,7 @@ TestScanResult.prototype.getStatistics = function() {
|
| return {
|
| scanDuration: this.scanDuration,
|
| newFileCount: this.fileEntries.length,
|
| - duplicateFileCount: this.duplicateFileCount,
|
| + duplicates: {},
|
| sizeBytes: this.totalBytes
|
| };
|
| };
|
|
|