| Index: webkit/fileapi/file_system_context.h
|
| diff --git a/webkit/fileapi/file_system_context.h b/webkit/fileapi/file_system_context.h
|
| index fc10aa7254fa76b90c5401202981f2a4e01ccb76..f8d771de37d083784b80d1c7f9d9afca71c0f225 100644
|
| --- a/webkit/fileapi/file_system_context.h
|
| +++ b/webkit/fileapi/file_system_context.h
|
| @@ -30,7 +30,7 @@ class QuotaManagerProxy;
|
| }
|
|
|
| namespace webkit_blob {
|
| -class FileReader;
|
| +class FileStreamReader;
|
| }
|
|
|
| namespace fileapi {
|
| @@ -127,13 +127,13 @@ class FILEAPI_EXPORT FileSystemContext
|
| // depending on the filesystem type pointed by the |url|.
|
| FileSystemOperationInterface* CreateFileSystemOperation(const GURL& url);
|
|
|
| - // Creates new FileReader instance to read a file pointed by the given
|
| + // Creates new FileStreamReader instance to read a file pointed by the given
|
| // filesystem URL |url| starting from |offset|.
|
| // This method internally cracks the |url|, get an appropriate
|
| // MountPointProvider for the URL and call the provider's CreateFileReader.
|
| // The resolved MountPointProvider could perform further specialization
|
| // depending on the filesystem type pointed by the |url|.
|
| - webkit_blob::FileReader* CreateFileReader(
|
| + webkit_blob::FileStreamReader* CreateFileStreamReader(
|
| const GURL& url,
|
| int64 offset);
|
|
|
|
|