OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_SPECIAL_STORAGE_POLICY_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_SPECIAL_STORAGE_POLICY_H_ |
6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_SPECIAL_STORAGE_POLICY_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_SPECIAL_STORAGE_POLICY_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 23 matching lines...) Expand all Loading... |
34 content_settings::CookieSettings* cookie_settings); | 34 content_settings::CookieSettings* cookie_settings); |
35 | 35 |
36 // storage::SpecialStoragePolicy methods used by storage subsystems and the | 36 // storage::SpecialStoragePolicy methods used by storage subsystems and the |
37 // browsing data remover. These methods are safe to call on any thread. | 37 // browsing data remover. These methods are safe to call on any thread. |
38 bool IsStorageProtected(const GURL& origin) override; | 38 bool IsStorageProtected(const GURL& origin) override; |
39 bool IsStorageUnlimited(const GURL& origin) override; | 39 bool IsStorageUnlimited(const GURL& origin) override; |
40 bool IsStorageSessionOnly(const GURL& origin) override; | 40 bool IsStorageSessionOnly(const GURL& origin) override; |
41 bool CanQueryDiskSize(const GURL& origin) override; | 41 bool CanQueryDiskSize(const GURL& origin) override; |
42 bool HasIsolatedStorage(const GURL& origin) override; | 42 bool HasIsolatedStorage(const GURL& origin) override; |
43 bool HasSessionOnlyOrigins() override; | 43 bool HasSessionOnlyOrigins() override; |
| 44 bool IsStorageDurable(const GURL& origin) override; |
44 | 45 |
45 // Methods used by the ExtensionService to populate this class. | 46 // Methods used by the ExtensionService to populate this class. |
46 void GrantRightsForExtension(const extensions::Extension* extension, | 47 void GrantRightsForExtension(const extensions::Extension* extension, |
47 content::BrowserContext* browser_context); | 48 content::BrowserContext* browser_context); |
48 void RevokeRightsForExtension(const extensions::Extension* extension); | 49 void RevokeRightsForExtension(const extensions::Extension* extension); |
49 void RevokeRightsForAllExtensions(); | 50 void RevokeRightsForAllExtensions(); |
50 | 51 |
51 // Decides whether the storage for |extension|'s web extent needs protection. | 52 // Decides whether the storage for |extension|'s web extent needs protection. |
52 bool NeedsProtection(const extensions::Extension* extension); | 53 bool NeedsProtection(const extensions::Extension* extension); |
53 | 54 |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
90 SpecialCollection protected_apps_; | 91 SpecialCollection protected_apps_; |
91 SpecialCollection installed_apps_; | 92 SpecialCollection installed_apps_; |
92 SpecialCollection unlimited_extensions_; | 93 SpecialCollection unlimited_extensions_; |
93 SpecialCollection file_handler_extensions_; | 94 SpecialCollection file_handler_extensions_; |
94 SpecialCollection isolated_extensions_; | 95 SpecialCollection isolated_extensions_; |
95 SpecialCollection content_capabilities_unlimited_extensions_; | 96 SpecialCollection content_capabilities_unlimited_extensions_; |
96 scoped_refptr<content_settings::CookieSettings> cookie_settings_; | 97 scoped_refptr<content_settings::CookieSettings> cookie_settings_; |
97 }; | 98 }; |
98 | 99 |
99 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SPECIAL_STORAGE_POLICY_H_ | 100 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SPECIAL_STORAGE_POLICY_H_ |
OLD | NEW |