| Index: ui/file_manager/file_manager/foreground/js/metadata/metadata_cache.js
|
| diff --git a/ui/file_manager/file_manager/foreground/js/metadata/metadata_cache.js b/ui/file_manager/file_manager/foreground/js/metadata/metadata_cache.js
|
| index 8de5921ed121113198be5350a54a533484ce1f31..631eafd3860ce1fa875a2bc45cedb360a224b9cd 100644
|
| --- a/ui/file_manager/file_manager/foreground/js/metadata/metadata_cache.js
|
| +++ b/ui/file_manager/file_manager/foreground/js/metadata/metadata_cache.js
|
| @@ -197,7 +197,7 @@ MetadataCache.prototype.currentEvictionThreshold_ = function() {
|
| *
|
| * @param {Array.<Entry>} entries The list of entries.
|
| * @param {string} type The metadata type.
|
| - * @param {function(Object)} callback The metadata is passed to callback.
|
| + * @param {?function(Object)} callback The metadata is passed to callback.
|
| * The callback is called asynchronously.
|
| */
|
| MetadataCache.prototype.get = function(entries, type, callback) {
|
| @@ -210,7 +210,7 @@ MetadataCache.prototype.get = function(entries, type, callback) {
|
| *
|
| * @param {Array.<Entry>} entries The list of entries.
|
| * @param {string} type The metadata type.
|
| - * @param {function(Object)} callback The metadata is passed to callback.
|
| + * @param {?function(Object)} callback The metadata is passed to callback.
|
| * The callback is called asynchronously.
|
| */
|
| MetadataCache.prototype.getLatest = function(entries, type, callback) {
|
| @@ -224,7 +224,7 @@ MetadataCache.prototype.getLatest = function(entries, type, callback) {
|
| * @param {string} type The metadata type.
|
| * @param {boolean} refresh True to get the latest value and refresh the cache,
|
| * false to get the value from the cache.
|
| - * @param {function(Object)} callback The metadata is passed to callback.
|
| + * @param {?function(Object)} callback The metadata is passed to callback.
|
| * The callback is called asynchronously.
|
| * @private
|
| */
|
|
|