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

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

Issue 2351803002: Switching ExtensionSpecialStoragePolicy::IsStorageDurable to use DurableStoragePermissionContext. (Closed)
Patch Set: Using PermissionManager::Get(). Created 4 years, 3 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
(...skipping 13 matching lines...) Expand all
24 namespace extensions { 24 namespace extensions {
25 class Extension; 25 class Extension;
26 } 26 }
27 27
28 // Special rights are granted to 'extensions' and 'applications'. The 28 // Special rights are granted to 'extensions' and 'applications'. The
29 // storage subsystems and the browsing data remover query this interface 29 // storage subsystems and the browsing data remover query this interface
30 // to determine which origins have these rights. 30 // to determine which origins have these rights.
31 class ExtensionSpecialStoragePolicy : public storage::SpecialStoragePolicy { 31 class ExtensionSpecialStoragePolicy : public storage::SpecialStoragePolicy {
32 public: 32 public:
33 explicit ExtensionSpecialStoragePolicy( 33 explicit ExtensionSpecialStoragePolicy(
34 content_settings::CookieSettings* cookie_settings); 34 content::BrowserContext* browser_context);
pfeldman 2016/09/23 17:12:20 As a part of the chrome internal API, you should p
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 content::BrowserContext* browser_context_; // weak reference.
pfeldman 2016/09/23 17:12:20 It is either WeakPtr or a raw pointer. In this cas
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