mirror of
https://github.com/electron/electron.git
synced 2026-04-10 03:01:51 -04:00
* chore: bump chromium to 106.0.5216.0 (main) (#34993) * Trigger Build Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com> Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org>
31 lines
977 B
C++
31 lines
977 B
C++
// 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 ELECTRON_SHELL_BROWSER_SPECIAL_STORAGE_POLICY_H_
|
|
#define ELECTRON_SHELL_BROWSER_SPECIAL_STORAGE_POLICY_H_
|
|
|
|
#include "storage/browser/quota/special_storage_policy.h"
|
|
|
|
namespace electron {
|
|
|
|
class SpecialStoragePolicy : public storage::SpecialStoragePolicy {
|
|
public:
|
|
SpecialStoragePolicy();
|
|
|
|
// storage::SpecialStoragePolicy implementation.
|
|
bool IsStorageProtected(const GURL& origin) override;
|
|
bool IsStorageUnlimited(const GURL& origin) override;
|
|
bool IsStorageDurable(const GURL& origin) override;
|
|
bool HasIsolatedStorage(const GURL& origin) override;
|
|
bool IsStorageSessionOnly(const GURL& origin) override;
|
|
bool HasSessionOnlyOrigins() override;
|
|
|
|
protected:
|
|
~SpecialStoragePolicy() override;
|
|
};
|
|
|
|
} // namespace electron
|
|
|
|
#endif // ELECTRON_SHELL_BROWSER_SPECIAL_STORAGE_POLICY_H_
|