summaryrefslogtreecommitdiffstats
path: root/webkit/fileapi/file_system_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/file_system_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/file_system_mount_point_provider.h')
-rw-r--r--webkit/fileapi/file_system_mount_point_provider.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/webkit/fileapi/file_system_mount_point_provider.h b/webkit/fileapi/file_system_mount_point_provider.h
index 36b3384..5ac21efe 100644
--- a/webkit/fileapi/file_system_mount_point_provider.h
+++ b/webkit/fileapi/file_system_mount_point_provider.h
@@ -61,9 +61,7 @@ class FILEAPI_EXPORT FileSystemMountPointProvider {
bool create) = 0;
// Checks if access to |virtual_path| is allowed from |origin_url|.
- virtual bool IsAccessAllowed(const GURL& origin_url,
- FileSystemType type,
- const FilePath& virtual_path) = 0;
+ virtual bool IsAccessAllowed(const FileSystemURL& url) = 0;
// Checks if a given |name| contains any restricted names/chars in it.
// Callable on any thread.