summaryrefslogtreecommitdiffstats
path: root/webkit/fileapi/sandbox_mount_point_provider.h
diff options
context:
space:
mode:
authorkinuko@chromium.org <kinuko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-08-27 11:34:13 +0000
committerkinuko@chromium.org <kinuko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-08-27 11:34:13 +0000
commit5aeeb7c6d2c63ae6f2225495c6bd72b1e81ceb17 (patch)
treed820c89a46938ef11f9ddf0095b4cfc7834ad94d /webkit/fileapi/sandbox_mount_point_provider.h
parente6ab3071f0d71d7aaf80b76a0fabc4a5d8f93195 (diff)
downloadchromium_src-5aeeb7c6d2c63ae6f2225495c6bd72b1e81ceb17.zip
chromium_src-5aeeb7c6d2c63ae6f2225495c6bd72b1e81ceb17.tar.gz
chromium_src-5aeeb7c6d2c63ae6f2225495c6bd72b1e81ceb17.tar.bz2
Changed FileSystemPointProvider::IsAcccessAllowed() to take a single FileSystemURL instead of a triplet.
BUG=142267 Contributed by calvinlo@chromium.org Review URL: https://chromiumcodereview.appspot.com/10873055 Patch from Calvin Lo <calvinlo@chromium.org>. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153463 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/fileapi/sandbox_mount_point_provider.h')
-rw-r--r--webkit/fileapi/sandbox_mount_point_provider.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/webkit/fileapi/sandbox_mount_point_provider.h b/webkit/fileapi/sandbox_mount_point_provider.h
index 13b7445..514abe4 100644
--- a/webkit/fileapi/sandbox_mount_point_provider.h
+++ b/webkit/fileapi/sandbox_mount_point_provider.h
@@ -84,10 +84,7 @@ class FILEAPI_EXPORT SandboxMountPointProvider
FileSystemType type,
const FilePath& virtual_path,
bool create) OVERRIDE;
- virtual bool IsAccessAllowed(
- const GURL& origin_url,
- FileSystemType type,
- const FilePath& virtual_path) OVERRIDE;
+ virtual bool IsAccessAllowed(const FileSystemURL& url) OVERRIDE;
virtual bool IsRestrictedFileName(const FilePath& filename) const OVERRIDE;
virtual FileSystemFileUtil* GetFileUtil(FileSystemType type) OVERRIDE;
virtual FilePath GetPathForPermissionsCheck(const FilePath& virtual_path)