| 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 ebce1de6bb963739169ff47bd681524cd117ddd5..55ecbdf76c027e2295d06704afb4358182b5cead 100644
|
| --- a/webkit/fileapi/file_system_mount_point_provider.h
|
| +++ b/webkit/fileapi/file_system_mount_point_provider.h
|
| @@ -25,6 +25,7 @@ namespace fileapi {
|
| class FileSystemContext;
|
| class FileSystemFileUtil;
|
| class FileSystemOperationInterface;
|
| +class FileSystemQuotaUtil;
|
| class RemoteFileSystemProxyInterface;
|
|
|
| // An interface to provide mount-point-specific path-related utilities
|
| @@ -99,6 +100,10 @@ class FileSystemMountPointProvider {
|
| const GURL& url,
|
| int64 offset,
|
| FileSystemContext* context) const = 0;
|
| +
|
| + // Returns the specialized FileSystemQuotaUtil for this mount point.
|
| + // This could return NULL if this mount point does not support quota.
|
| + virtual FileSystemQuotaUtil* GetQuotaUtil() = 0;
|
| };
|
|
|
| // An interface to control external file system access permissions.
|
|
|