chromium/components/services/storage/public/mojom/buckets/bucket_id.mojom

// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

module storage.mojom;

// Represents the id for a Storage Bucket.
// IDs will always be generated by SQLite in QuotaDatabase, and all valid
// BucketIds are positive.
//
// Note: BucketId should not exposed to the renderer for they cannot be trusted.
struct BucketId {
  int64 value;
};