chromium/components/services/storage/privileged/cpp/bucket_client_info.h

// 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 COMPONENTS_SERVICES_STORAGE_PRIVILEGED_CPP_BUCKET_CLIENT_INFO_H_
#define COMPONENTS_SERVICES_STORAGE_PRIVILEGED_CPP_BUCKET_CLIENT_INFO_H_

#include <cstdint>
#include <optional>

#include "third_party/blink/public/common/tokens/tokens.h"

namespace storage {

// Information about the browser process representation of an execution context
// (frame or worker) acting as the client of a bucket.
//
// Typemapping is maintained between this and storage.mojom.BucketClientInfo.
struct BucketClientInfo {};

}  // namespace storage

#endif  // COMPONENTS_SERVICES_STORAGE_PRIVILEGED_CPP_BUCKET_CLIENT_INFO_H_