// Copyright 2022 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_TEST_TEST_RASTER_INTERFACE_H_ #define COMPONENTS_VIZ_TEST_TEST_RASTER_INTERFACE_H_ #include <utility> #include "base/functional/callback.h" #include "components/viz/test/test_context_support.h" #include "gpu/command_buffer/client/raster_interface.h" #include "gpu/command_buffer/common/capabilities.h" #include "gpu/command_buffer/common/sync_token.h" namespace viz { // A fake implementation of RasterInterface for use in unit tests that don't // draw anything. class TestRasterInterface : public gpu::raster::RasterInterface { … }; } // namespace viz #endif // COMPONENTS_VIZ_TEST_TEST_RASTER_INTERFACE_H_