diff options
Diffstat (limited to 'webkit/quota')
-rw-r--r-- | webkit/quota/special_storage_policy.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/webkit/quota/special_storage_policy.h b/webkit/quota/special_storage_policy.h index 90526f0..99cc643d 100644 --- a/webkit/quota/special_storage_policy.h +++ b/webkit/quota/special_storage_policy.h @@ -27,6 +27,9 @@ class SpecialStoragePolicy // Unlimited storage is not subject to 'quotas'. virtual bool IsStorageUnlimited(const GURL& origin) = 0; + // Local file system access allowed via File API. + virtual bool IsLocalFileSystemAccessAllowed(const GURL& origin) = 0; + protected: friend class base::RefCountedThreadSafe<SpecialStoragePolicy>; virtual ~SpecialStoragePolicy(); |