| Index: webkit/chromeos/fileapi/cros_mount_point_provider.h
|
| diff --git a/webkit/chromeos/fileapi/cros_mount_point_provider.h b/webkit/chromeos/fileapi/cros_mount_point_provider.h
|
| index d88c44e6054a4cbbd744a64eba7615b3ea63f830..9aaf1cd298a0af7f046ec3856e9c2e9f13a02eaa 100644
|
| --- a/webkit/chromeos/fileapi/cros_mount_point_provider.h
|
| +++ b/webkit/chromeos/fileapi/cros_mount_point_provider.h
|
| @@ -35,7 +35,7 @@ class FileAccessPermissions;
|
| class WEBKIT_STORAGE_EXPORT CrosMountPointProvider
|
| : public fileapi::ExternalFileSystemMountPointProvider {
|
| public:
|
| - using fileapi::FileSystemMountPointProvider::ValidateFileSystemCallback;
|
| + using fileapi::FileSystemMountPointProvider::OpenFileSystemCallback;
|
| using fileapi::FileSystemMountPointProvider::DeleteFileSystemCallback;
|
|
|
| // CrosMountPointProvider will take an ownership of a |mount_points|
|
| @@ -54,11 +54,11 @@ class WEBKIT_STORAGE_EXPORT CrosMountPointProvider
|
|
|
| // fileapi::FileSystemMountPointProvider overrides.
|
| virtual bool CanHandleType(fileapi::FileSystemType type) const OVERRIDE;
|
| - virtual void ValidateFileSystemRoot(
|
| + virtual void OpenFileSystem(
|
| const GURL& origin_url,
|
| fileapi::FileSystemType type,
|
| - bool create,
|
| - const ValidateFileSystemCallback& callback) OVERRIDE;
|
| + fileapi::OpenFileSystemMode mode,
|
| + const OpenFileSystemCallback& callback) OVERRIDE;
|
| virtual fileapi::FileSystemFileUtil* GetFileUtil(
|
| fileapi::FileSystemType type) OVERRIDE;
|
| virtual fileapi::AsyncFileUtil* GetAsyncFileUtil(
|
|
|