blob: 91cdfac791d39b4d5cdaa3c75b85a90e51276409 [file] [log] [blame]
// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef NET_STORAGE_ACCESS_API_STATUS_H_
#define NET_STORAGE_ACCESS_API_STATUS_H_
namespace net {
// Status related to the Storage Access API.
// Spec: https://privacycg.github.io/storage-access/
enum class StorageAccessApiStatus {
// This context has not opted into unpartitioned cookie access via the Storage
// Access API.
kNone,
// This context has opted into unpartitioned cookie access via the Storage
// Access API.
kAccessViaAPI,
};
} // namespace net
#endif // NET_STORAGE_ACCESS_API_STATUS_H_