chromium/components/viz/common/surfaces/frame_sink_bundle_id.h

// 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.

#ifndef COMPONENTS_VIZ_COMMON_SURFACES_FRAME_SINK_BUNDLE_ID_H_
#define COMPONENTS_VIZ_COMMON_SURFACES_FRAME_SINK_BUNDLE_ID_H_

#include <stdint.h>

#include <compare>

#include "base/hash/hash.h"
#include "components/viz/common/viz_common_export.h"

namespace viz {

// A FrameSinkBundleId uniquely identifies a FrameSinkBundle and the client that
// uses it within the Viz compositing system.
class VIZ_COMMON_EXPORT FrameSinkBundleId {};

struct FrameSinkBundleIdHash {};

}  // namespace viz

#endif  // COMPONENTS_VIZ_COMMON_SURFACES_FRAME_SINK_BUNDLE_ID_H_