2015-10-12 13:09:39 +00:00
|
|
|
// Copyright 2014 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 BRIGHTRAY_BROWSER_SPECIAL_STORAGE_POLICY_H_
|
|
|
|
#define BRIGHTRAY_BROWSER_SPECIAL_STORAGE_POLICY_H_
|
|
|
|
|
|
|
|
#include "storage/browser/quota/special_storage_policy.h"
|
|
|
|
|
|
|
|
namespace brightray {
|
|
|
|
|
|
|
|
class SpecialStoragePolicy : public storage::SpecialStoragePolicy {
|
|
|
|
public:
|
|
|
|
SpecialStoragePolicy();
|
|
|
|
|
|
|
|
// storage::SpecialStoragePolicy implementation.
|
|
|
|
bool IsStorageProtected(const GURL& origin) override;
|
|
|
|
bool IsStorageUnlimited(const GURL& origin) override;
|
2015-12-07 11:55:01 +00:00
|
|
|
bool IsStorageDurable(const GURL& origin) override;
|
2015-10-12 13:09:39 +00:00
|
|
|
bool HasIsolatedStorage(const GURL& origin) override;
|
2017-04-04 04:43:49 +00:00
|
|
|
bool IsStorageSessionOnly(const GURL& origin) override;
|
2015-10-12 13:09:39 +00:00
|
|
|
bool HasSessionOnlyOrigins() override;
|
2018-04-08 19:39:07 +00:00
|
|
|
bool ShouldDeleteCookieOnExit(const GURL& origin) override;
|
2015-10-12 13:09:39 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
~SpecialStoragePolicy() override;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace brightray
|
|
|
|
|
|
|
|
#endif // BRIGHTRAY_BROWSER_SPECIAL_STORAGE_POLICY_H_
|