| Index: webkit/browser/fileapi/file_system_operation_runner.h
|
| diff --git a/webkit/browser/fileapi/file_system_operation_runner.h b/webkit/browser/fileapi/file_system_operation_runner.h
|
| index 2c5389b373382ed8ef22239dd68e0926833fcbcb..67f30b89b1712f1af0e05bb23e99d3cf877b0759 100644
|
| --- a/webkit/browser/fileapi/file_system_operation_runner.h
|
| +++ b/webkit/browser/fileapi/file_system_operation_runner.h
|
| @@ -34,7 +34,7 @@ class FileSystemContext;
|
| //
|
| // Some operations (e.g. CopyInForeignFile, RemoveFile, RemoveDirectory,
|
| // CopyFileLocal, MoveFileLocal and SyncGetPlatformPath) are only supported
|
| -// by filesystems which implement LocalFileSystemOperation.
|
| +// by filesystems which implement FileSystemOperationImpl.
|
| // If they are called on other filesystems
|
| // base::PLATFORM_FILE_ERROR_INVALID_OPERATION is returned via callback.
|
| class WEBKIT_STORAGE_BROWSER_EXPORT FileSystemOperationRunner
|
| @@ -263,12 +263,12 @@ class WEBKIT_STORAGE_BROWSER_EXPORT FileSystemOperationRunner
|
| const base::FilePath& platform_path,
|
| const scoped_refptr<webkit_blob::ShareableFileReference>& file_ref);
|
|
|
| - // A helper method for creating LocalFileSystemOperation for operations
|
| - // that are supported only in LocalFileSystemOperation.
|
| + // A helper method for creating FileSystemOperationImpl for operations
|
| + // that are supported only in FileSystemOperationImpl.
|
| // Note that this returns FileSystemOperation, so the caller needs to
|
| - // call AsLocalFileSystemOperation() (which is guaranteed to be non-null
|
| + // call AsFileSystemOperationImpl() (which is guaranteed to be non-null
|
| // if this method returns without error).
|
| - FileSystemOperation* CreateLocalFileSystemOperation(
|
| + FileSystemOperation* CreateFileSystemOperationImpl(
|
| const FileSystemURL& url,
|
| base::PlatformFileError* error);
|
|
|
|
|