summaryrefslogtreecommitdiffstats
path: root/webkit/fileapi/sandbox_mount_point_provider.h
diff options
context:
space:
mode:
Diffstat (limited to 'webkit/fileapi/sandbox_mount_point_provider.h')
-rw-r--r--webkit/fileapi/sandbox_mount_point_provider.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/webkit/fileapi/sandbox_mount_point_provider.h b/webkit/fileapi/sandbox_mount_point_provider.h
index bb6d12a..d981cc8 100644
--- a/webkit/fileapi/sandbox_mount_point_provider.h
+++ b/webkit/fileapi/sandbox_mount_point_provider.h
@@ -26,8 +26,6 @@ class SandboxMountPointProvider : public FileSystemMountPointProvider {
FileSystemPathManager* path_manager,
scoped_refptr<base::MessageLoopProxy> file_message_loop,
const FilePath& profile_path);
- virtual ~SandboxMountPointProvider() {
- }
// Checks if mount point access is allowed from |origin_url|.
virtual bool IsAccessAllowed(const GURL& origin_url);
@@ -35,7 +33,7 @@ class SandboxMountPointProvider : public FileSystemMountPointProvider {
// Retrieves the root path for the given |origin_url| and |type|, and
// calls the given |callback| with the root path and name.
// If |create| is true this also creates the directory if it doesn't exist.
- virtual void GetFileSystemRootPath(
+ void GetFileSystemRootPath(
const GURL& origin_url,
FileSystemType type,
bool create,
@@ -43,7 +41,7 @@ class SandboxMountPointProvider : public FileSystemMountPointProvider {
// Like GetFileSystemRootPath, but synchronous, and can be called only while
// running on the file thread.
- virtual FilePath GetFileSystemRootPathOnFileThread(
+ FilePath GetFileSystemRootPathOnFileThread(
const GURL& origin_url,
FileSystemType type,
bool create);