Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(778)

Unified Diff: ui/file_manager/file_manager/foreground/js/metadata/file_system_metadata.js

Issue 897573003: Fix annottation of FileEntry to Entry. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | ui/file_manager/file_manager/foreground/js/metadata/metadata_cache_set.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/file_manager/file_manager/foreground/js/metadata/file_system_metadata.js
diff --git a/ui/file_manager/file_manager/foreground/js/metadata/file_system_metadata.js b/ui/file_manager/file_manager/foreground/js/metadata/file_system_metadata.js
index 04f98c5ab67fc5b6c63eb6cf3878c616aebd4545..93e03ee9cf6a2cdf66c1e6c86cb56a208f553b6d 100644
--- a/ui/file_manager/file_manager/foreground/js/metadata/file_system_metadata.js
+++ b/ui/file_manager/file_manager/foreground/js/metadata/file_system_metadata.js
@@ -42,7 +42,7 @@ function FileSystemMetadata(
/**
* Obtains metadata for entries.
- * @param {!Array<!FileEntry>} entries Entries.
+ * @param {!Array<!Entry>} entries Entries.
* @param {!Array<string>} names Metadata property names to be obtained.
* @return {!Promise<!Array<!ExternalMetadataProperties>>}
*/
@@ -83,7 +83,7 @@ FileSystemMetadata.prototype.get = function(entries, names) {
/**
* Obtains metadata cache for entries.
- * @param {!Array<!FileEntry>} entries Entries.
+ * @param {!Array<!Entry>} entries Entries.
* @param {!Array<string>} names Metadata property names to be obtained.
* @return {!Array<!ExternalMetadataProperties>}
*/
@@ -93,7 +93,7 @@ FileSystemMetadata.prototype.getCache = function(entries, names) {
/**
* Clears old metadata for newly created entries.
- * @param {!Array<!FileEntry>} entries
+ * @param {!Array<!Entry>} entries
*/
FileSystemMetadata.prototype.notifyEntryCreated = function(entries) {
this.cache_.clear(entries);
« no previous file with comments | « no previous file | ui/file_manager/file_manager/foreground/js/metadata/metadata_cache_set.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698