Chromium Code Reviews| Index: chrome/browser/resources/file_manager/js/metadata/metadata_cache.js |
| diff --git a/chrome/browser/resources/file_manager/js/metadata/metadata_cache.js b/chrome/browser/resources/file_manager/js/metadata/metadata_cache.js |
| index 9459c87892ea2f41482245eef4556fe1a27141fb..9a8b30008c1e30859309d18822bfe06823157067 100644 |
| --- a/chrome/browser/resources/file_manager/js/metadata/metadata_cache.js |
| +++ b/chrome/browser/resources/file_manager/js/metadata/metadata_cache.js |
| @@ -694,7 +694,7 @@ GDataProvider.prototype.callApi_ = function() { |
| this.callbacks_ = []; |
| var self = this; |
| - chrome.fileBrowserPrivate.getGDataFileProperties(urls, function(props) { |
| + chrome.fileBrowserPrivate.getDriveFileProperties(urls, function(props) { |
| for (var index = 0; index < urls.length; index++) { |
| callbacks[index](self.convert_(props[index], urls[index])); |
| } |
| @@ -702,7 +702,7 @@ GDataProvider.prototype.callApi_ = function() { |
| }; |
| /** |
| - * @param {GDataFileProperties} data GData file properties. |
| + * @param {DriveFileProperties} data GData file properties. |
|
dgozman
2012/11/27 05:06:36
You might change description as well.
yoshiki
2012/11/27 07:59:07
Done.
|
| * @param {string} url File url. |
| * @return {boolean} True if the file is available offline. |
| */ |
| @@ -718,7 +718,7 @@ GDataProvider.isAvailableOffline = function(data, url) { |
| }; |
| /** |
| - * @param {GDataFileProperties} data GData file properties. |
| + * @param {DriveFileProperties} data GData file properties. |
|
dgozman
2012/11/27 05:06:36
Ditto.
yoshiki
2012/11/27 07:59:07
Done.
|
| * @return {boolean} True if opening the file does not require downloading it |
| * via a metered connection. |
| */ |