// 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 { … }; } // namespace net #endif // NET_STORAGE_ACCESS_API_STATUS_H_