Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(333)

Side by Side Diff: chrome/browser/extensions/extension_special_storage_policy.h

Issue 2351803002: Switching ExtensionSpecialStoragePolicy::IsStorageDurable to use DurableStoragePermissionContext. (Closed)
Patch Set: Switching IsStorageDurable() to use DurableStoragePermissionContext. Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
11 #include "base/synchronization/lock.h" 11 #include "base/synchronization/lock.h"
12 #include "chrome/browser/profiles/profile.h"
12 #include "extensions/common/extension_set.h" 13 #include "extensions/common/extension_set.h"
13 #include "storage/browser/quota/special_storage_policy.h" 14 #include "storage/browser/quota/special_storage_policy.h"
14 #include "url/gurl.h" 15 #include "url/gurl.h"
15 16
16 namespace content { 17 namespace content {
17 class BrowserContext; 18 class BrowserContext;
18 } 19 }
19 20
20 namespace content_settings { 21 namespace content_settings {
21 class CookieSettings; 22 class CookieSettings;
22 } 23 }
23 24
24 namespace extensions { 25 namespace extensions {
25 class Extension; 26 class Extension;
26 } 27 }
27 28
28 // Special rights are granted to 'extensions' and 'applications'. The 29 // Special rights are granted to 'extensions' and 'applications'. The
29 // storage subsystems and the browsing data remover query this interface 30 // storage subsystems and the browsing data remover query this interface
30 // to determine which origins have these rights. 31 // to determine which origins have these rights.
31 class ExtensionSpecialStoragePolicy : public storage::SpecialStoragePolicy { 32 class ExtensionSpecialStoragePolicy : public storage::SpecialStoragePolicy {
32 public: 33 public:
33 explicit ExtensionSpecialStoragePolicy( 34 explicit ExtensionSpecialStoragePolicy(Profile* profile);
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 bool IsStorageDurable(const GURL& origin) override;
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 void NotifyRevoked(const GURL& origin, int change_flags); 87 void NotifyRevoked(const GURL& origin, int change_flags);
88 void NotifyCleared(); 88 void NotifyCleared();
89 89
90 base::Lock lock_; // Synchronize all access to the collections. 90 base::Lock lock_; // Synchronize all access to the collections.
91 SpecialCollection protected_apps_; 91 SpecialCollection protected_apps_;
92 SpecialCollection installed_apps_; 92 SpecialCollection installed_apps_;
93 SpecialCollection unlimited_extensions_; 93 SpecialCollection unlimited_extensions_;
94 SpecialCollection file_handler_extensions_; 94 SpecialCollection file_handler_extensions_;
95 SpecialCollection isolated_extensions_; 95 SpecialCollection isolated_extensions_;
96 SpecialCollection content_capabilities_unlimited_extensions_; 96 SpecialCollection content_capabilities_unlimited_extensions_;
97
97 scoped_refptr<content_settings::CookieSettings> cookie_settings_; 98 scoped_refptr<content_settings::CookieSettings> cookie_settings_;
99 Profile* profile_;
98 }; 100 };
99 101
100 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SPECIAL_STORAGE_POLICY_H_ 102 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SPECIAL_STORAGE_POLICY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698