diff options
author | ericu@google.com <ericu@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-24 01:32:48 +0000 |
---|---|---|
committer | ericu@google.com <ericu@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-24 01:32:48 +0000 |
commit | fe641c8aa8e5471c85fccac181c8db3b9dfef2b5 (patch) | |
tree | dedb0abb206734ad56c675790e305abcba9b14c2 /webkit/fileapi/sandbox_mount_point_provider.h | |
parent | 4ff51b75326cb2260c17310487230974a5a8655e (diff) | |
download | chromium_src-fe641c8aa8e5471c85fccac181c8db3b9dfef2b5.zip chromium_src-fe641c8aa8e5471c85fccac181c8db3b9dfef2b5.tar.gz chromium_src-fe641c8aa8e5471c85fccac181c8db3b9dfef2b5.tar.bz2 |
Proper build fix.
BUG=none
TEST=none
TBR=cmp
Review URL: http://codereview.chromium.org/6734001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79234 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/fileapi/sandbox_mount_point_provider.h')
-rw-r--r-- | webkit/fileapi/sandbox_mount_point_provider.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/webkit/fileapi/sandbox_mount_point_provider.h b/webkit/fileapi/sandbox_mount_point_provider.h index d981cc8..b401435 100644 --- a/webkit/fileapi/sandbox_mount_point_provider.h +++ b/webkit/fileapi/sandbox_mount_point_provider.h @@ -26,6 +26,7 @@ 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); @@ -33,7 +34,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. - void GetFileSystemRootPath( + virtual void GetFileSystemRootPath( const GURL& origin_url, FileSystemType type, bool create, @@ -41,7 +42,7 @@ class SandboxMountPointProvider : public FileSystemMountPointProvider { // Like GetFileSystemRootPath, but synchronous, and can be called only while // running on the file thread. - FilePath GetFileSystemRootPathOnFileThread( + virtual FilePath GetFileSystemRootPathOnFileThread( const GURL& origin_url, FileSystemType type, bool create); |