| Index: webkit/fileapi/file_system_mount_point_provider.h
|
| diff --git a/webkit/fileapi/file_system_mount_point_provider.h b/webkit/fileapi/file_system_mount_point_provider.h
|
| index 5ac21efe1f9b08eb498e5d547105129bb112b25b..1ee7ab467ef0fc0ba4adec306f30b1c602c68d07 100644
|
| --- a/webkit/fileapi/file_system_mount_point_provider.h
|
| +++ b/webkit/fileapi/file_system_mount_point_provider.h
|
| @@ -77,12 +77,14 @@ class FILEAPI_EXPORT FileSystemMountPointProvider {
|
|
|
| // Returns a new instance of the specialized FileSystemOperation for this
|
| // mount point based on the given triplet of |origin_url|, |file_system_type|
|
| - // and |virtual_path|.
|
| + // and |virtual_path|. On failure to create a file system operation, set
|
| + // |error_code| correspondingly.
|
| // This method is usually dispatched by
|
| // FileSystemContext::CreateFileSystemOperation.
|
| virtual FileSystemOperation* CreateFileSystemOperation(
|
| const FileSystemURL& url,
|
| - FileSystemContext* context) const = 0;
|
| + FileSystemContext* context,
|
| + base::PlatformFileError* error_code) const = 0;
|
|
|
| // Creates a new file stream reader for a given filesystem URL |url| with an
|
| // offset |offset|.
|
|
|