Chromium Code Reviews| Index: webkit/quota/special_storage_policy.h |
| =================================================================== |
| --- webkit/quota/special_storage_policy.h (revision 81576) |
| +++ webkit/quota/special_storage_policy.h (working copy) |
| @@ -5,8 +5,11 @@ |
| #ifndef WEBKIT_QUOTA_SPECIAL_STORAGE_POLICY_H_ |
| #define WEBKIT_QUOTA_SPECIAL_STORAGE_POLICY_H_ |
| +#include <string> |
| + |
| #include "base/memory/ref_counted.h" |
| +class FilePath; |
|
michaeln
2011/04/14 21:25:34
don't think this is needed anymore
zel
2011/04/14 21:46:20
Done.
|
| class GURL; |
| namespace quota { |
| @@ -27,8 +30,8 @@ |
| // 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; |
| + // Unlimited storage is not subject to 'quotas'. |
|
michaeln
2011/04/14 21:25:34
copy/paste comment does not apply... and method na
zel
2011/04/14 21:46:20
Done.
|
| + virtual bool IsFileHanlder(const std::string& extension_id) = 0; |
| protected: |
| friend class base::RefCountedThreadSafe<SpecialStoragePolicy>; |