Implement SpecialStoragePolicy::ShouldDeleteCookieOnExit
https://chromium-review.googlesource.com/c/chromium/src/+/926369
This commit is contained in:
parent
3666935c06
commit
c31d7ef70a
2 changed files with 5 additions and 0 deletions
|
@ -34,4 +34,8 @@ bool SpecialStoragePolicy::HasSessionOnlyOrigins() {
|
|||
return false;
|
||||
}
|
||||
|
||||
bool SpecialStoragePolicy::ShouldDeleteCookieOnExit(const GURL& origin) {
|
||||
return false;
|
||||
}
|
||||
|
||||
} // namespace brightray
|
||||
|
|
|
@ -20,6 +20,7 @@ class SpecialStoragePolicy : public storage::SpecialStoragePolicy {
|
|||
bool HasIsolatedStorage(const GURL& origin) override;
|
||||
bool IsStorageSessionOnly(const GURL& origin) override;
|
||||
bool HasSessionOnlyOrigins() override;
|
||||
bool ShouldDeleteCookieOnExit(const GURL& origin) override;
|
||||
|
||||
protected:
|
||||
~SpecialStoragePolicy() override;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue