diff options
author | michaeln@google.com <michaeln@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-17 01:29:29 +0000 |
---|---|---|
committer | michaeln@google.com <michaeln@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-17 01:29:29 +0000 |
commit | cca14717e2a53023829bae337d9f92d51c2fe7d5 (patch) | |
tree | 5aa800482ff0b2bc63fac530dc61c96e8939f27d /webkit/quota | |
parent | 50c851f30264d9a7ee512926e2b4b8c5b06dd892 (diff) | |
download | chromium_src-cca14717e2a53023829bae337d9f92d51c2fe7d5.zip chromium_src-cca14717e2a53023829bae337d9f92d51c2fe7d5.tar.gz chromium_src-cca14717e2a53023829bae337d9f92d51c2fe7d5.tar.bz2 |
Add the quota::SpecialStoragePolicy interface and an implementation that grants
'protected' and 'unlimited' storage rights to chrome extensions and applications.
BUG=52357
TEST=extension_special_storage_policy_unittest.cc
Review URL: http://codereview.chromium.org/6299012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75216 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/quota')
-rw-r--r-- | webkit/quota/special_storage_policy.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/webkit/quota/special_storage_policy.h b/webkit/quota/special_storage_policy.h new file mode 100644 index 0000000..1f17dac --- /dev/null +++ b/webkit/quota/special_storage_policy.h @@ -0,0 +1,31 @@ +// Copyright (c) 2010 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef WEBKIT_QUOTA_SPECIAL_STORAGE_POLICY_H_ +#define WEBKIT_QUOTA_SPECIAL_STORAGE_POLICY_H_ + +#include "base/ref_counted.h" + +class GURL; + +namespace quota { + +// Special rights are granted to 'extensions' and 'applications'. The +// storage subsystems query this interface to determine which origins +// have these rights. Chrome provides an impl that is cognizant of what +// is currently installed in the extensions system. +// An implementation must be thread-safe. +class SpecialStoragePolicy + : public base::RefCountedThreadSafe<SpecialStoragePolicy> { + public: + // Protected storage is not subject to removal by the browsing data remover. + virtual bool IsStorageProtected(const GURL& origin) = 0; + + // Unlimited storage is not subject to 'quotas'. + virtual bool IsStorageUnlimited(const GURL& origin) = 0; +}; + +} // namespace quota + +#endif // WEBKIT_QUOTA_SPECIAL_STORAGE_POLICY_H_ |