chromium/media/gpu/chromeos/mailbox_frame_registry.cc

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

#include "media/gpu/chromeos/mailbox_frame_registry.h"

#include "base/containers/contains.h"

namespace media {

MailboxFrameRegistry::MailboxFrameRegistry() = default;
MailboxFrameRegistry::~MailboxFrameRegistry() = default;

gpu::Mailbox MailboxFrameRegistry::RegisterFrame(
    scoped_refptr<const FrameResource> frame) {}

void MailboxFrameRegistry::UnregisterFrame(const gpu::Mailbox& mailbox) {}

scoped_refptr<const FrameResource> MailboxFrameRegistry::AccessFrame(
    const gpu::Mailbox& mailbox) const {}

}  // namespace media