| Index: storage/browser/fileapi/file_system_operation_runner.cc
|
| diff --git a/storage/browser/fileapi/file_system_operation_runner.cc b/storage/browser/fileapi/file_system_operation_runner.cc
|
| index 16480557078ce8437d4827b6124488ebc97782cb..4b5d422f0282b8beac1b1b05d94a0bd4f05a3280 100644
|
| --- a/storage/browser/fileapi/file_system_operation_runner.cc
|
| +++ b/storage/browser/fileapi/file_system_operation_runner.cc
|
| @@ -175,6 +175,7 @@ OperationID FileSystemOperationRunner::FileExists(
|
|
|
| OperationID FileSystemOperationRunner::GetMetadata(
|
| const FileSystemURL& url,
|
| + int fields,
|
| const GetMetadataCallback& callback) {
|
| base::File::Error error = base::File::FILE_OK;
|
| FileSystemOperation* operation =
|
| @@ -186,10 +187,9 @@ OperationID FileSystemOperationRunner::GetMetadata(
|
| return handle.id;
|
| }
|
| PrepareForRead(handle.id, url);
|
| - operation->GetMetadata(
|
| - url,
|
| - base::Bind(&FileSystemOperationRunner::DidGetMetadata, AsWeakPtr(),
|
| - handle, callback));
|
| + operation->GetMetadata(url, fields,
|
| + base::Bind(&FileSystemOperationRunner::DidGetMetadata,
|
| + AsWeakPtr(), handle, callback));
|
| return handle.id;
|
| }
|
|
|
|
|