blob: 95dbcb66272bc40203b1d2998d099d1cf2e2d472 [file] [log] [blame]
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_VIZ_SERVICE_DISPLAY_EMBEDDER_OUTPUT_SURFACE_PROVIDER_H_
#define COMPONENTS_VIZ_SERVICE_DISPLAY_EMBEDDER_OUTPUT_SURFACE_PROVIDER_H_
#include <memory>
#include "gpu/ipc/common/surface_handle.h"
#include "services/viz/privileged/interfaces/compositing/display_private.mojom.h"
namespace viz {
class RendererSettings;
class OutputSurface;
// Handles creating OutputSurface for FrameSinkManagerImpl.
class OutputSurfaceProvider {
public:
virtual ~OutputSurfaceProvider() {}
// Creates a new OutputSurface for |surface_handle|. If creating an
// OutputSurface fails this function will return null.
virtual std::unique_ptr<OutputSurface> CreateOutputSurface(
gpu::SurfaceHandle surface_handle,
bool gpu_compositing,
mojom::DisplayClient* display_client,
const RendererSettings& renderer_settings) = 0;
};
} // namespace viz
#endif // COMPONENTS_VIZ_SERVICE_DISPLAY_EMBEDDER_OUTPUT_SURFACE_PROVIDER_H_