#include "components/services/storage/public/cpp/buckets/bucket_init_params.h"
#include "components/services/storage/public/cpp/buckets/constants.h"
namespace storage {
BucketInitParams BucketInitParams::ForDefaultBucket(
const blink::StorageKey& storage_key) { … }
BucketInitParams::BucketInitParams(blink::StorageKey storage_key,
const std::string& name)
: … { … }
BucketInitParams::~BucketInitParams() = default;
BucketInitParams::BucketInitParams(const BucketInitParams&) = default;
BucketInitParams::BucketInitParams(BucketInitParams&&) noexcept = default;
BucketInitParams& BucketInitParams::operator=(const BucketInitParams&) =
default;
BucketInitParams& BucketInitParams::operator=(BucketInitParams&&) noexcept =
default;
}