Commit 14368198 authored by fukino@chromium.org's avatar fukino@chromium.org

Remove unused argument of getOne().

BUG=none
TEST=browser_tests gtest_filter=*FileManager*

Review URL: https://codereview.chromium.org/400133002

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@284089 0039d316-1c4b-4281-b951-d872f2087c98
parent eb493dd3
......@@ -259,13 +259,14 @@ MetadataCache.prototype.getInternal_ =
/**
* Fetches the metadata for one Entry. See comments to |get|.
* If required metadata is already in the cache, does not fetch it again.
*
* @param {Entry} entry The entry.
* @param {string} type Metadata type.
* @param {function(Object)} callback The metadata is passed to callback.
* The callback is called asynchronously.
*/
MetadataCache.prototype.getOne = function(entry, type, callback, refresh) {
MetadataCache.prototype.getOne = function(entry, type, callback) {
this.getOneInternal_(entry, type, false, callback);
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment