chromium/components/viz/service/frame_sinks/shared_image_interface_provider.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_VIZ_SERVICE_FRAME_SINKS_SHARED_IMAGE_INTERFACE_PROVIDER_H_
#define COMPONENTS_VIZ_SERVICE_FRAME_SINKS_SHARED_IMAGE_INTERFACE_PROVIDER_H_

#include <memory>

#include "base/sequence_checker.h"
#include "base/synchronization/lock.h"
#include "components/viz/service/viz_service_export.h"
#include "gpu/command_buffer/service/shared_context_state.h"

namespace base {
class WaitableEvent;
}  // namespace base

namespace gpu {
class SharedImageInterface;
class SharedImageInterfaceInProcess;
class SchedulerSequence;
}  // namespace gpu

namespace viz {
class GpuServiceImpl;

class VIZ_SERVICE_EXPORT SharedImageInterfaceProvider
    : public gpu::SharedContextState::ContextLostObserver {};

}  // namespace viz

#endif  // COMPONENTS_VIZ_SERVICE_FRAME_SINKS_SHARED_IMAGE_INTERFACE_PROVIDER_H_