| Index: webkit/fileapi/file_system_context.cc
|
| diff --git a/webkit/fileapi/file_system_context.cc b/webkit/fileapi/file_system_context.cc
|
| index 1390857065084755b3fc50f259ea682bdf6573a2..85c226be14f844bf635cdc71b9040b18b3ad96d1 100644
|
| --- a/webkit/fileapi/file_system_context.cc
|
| +++ b/webkit/fileapi/file_system_context.cc
|
| @@ -259,14 +259,16 @@ FileSystemOperation* FileSystemContext::CreateFileSystemOperation(
|
|
|
| webkit_blob::FileStreamReader* FileSystemContext::CreateFileStreamReader(
|
| const FileSystemURL& url,
|
| - int64 offset) {
|
| + int64 offset,
|
| + const base::Time& expected_modification_time) {
|
| if (!url.is_valid())
|
| return NULL;
|
| FileSystemMountPointProvider* mount_point_provider =
|
| GetMountPointProvider(url.type());
|
| if (!mount_point_provider)
|
| return NULL;
|
| - return mount_point_provider->CreateFileStreamReader(url, offset, this);
|
| + return mount_point_provider->CreateFileStreamReader(
|
| + url, offset, expected_modification_time, this);
|
| }
|
|
|
| void FileSystemContext::RegisterMountPointProvider(
|
|
|