Index: chrome/browser/resources/file_manager/js/file_manager.js |
=================================================================== |
--- chrome/browser/resources/file_manager/js/file_manager.js (revision 124537) |
+++ chrome/browser/resources/file_manager/js/file_manager.js (working copy) |
@@ -305,12 +305,6 @@ |
invokeCallback(successCallback, !!opt_sync, entry); |
return; |
} |
- |
- batchAsyncCall(entry, 'file', function(file) { |
- entry.cachedSize_ = file.size; |
- if (successCallback) |
- successCallback(entry); |
- }, opt_errorCallback); |
} |
/** |
@@ -334,8 +328,9 @@ |
} |
if (entry.isFile) { |
- batchAsyncCall(entry, 'file', function(file) { |
- entry.cachedMtime_ = file.lastModifiedDate; |
+ batchAsyncCall(entry, 'getMetadata', function(metadata) { |
+ entry.cachedMtime_ = metadata.modificationTime; |
+ entry.cachedSize_ = metadata.size; |
if (successCallback) |
successCallback(entry); |
}); |