#ifndef THIRD_PARTY_BLINK_RENDERER_PLATFORM_GRAPHICS_TEST_GPU_TEST_UTILS_H_
#define THIRD_PARTY_BLINK_RENDERER_PLATFORM_GRAPHICS_TEST_GPU_TEST_UTILS_H_
namespace cc {
class ImageDecodeCache;
}
namespace viz {
class TestContextProvider;
}
namespace blink {
enum class SetIsContextLost { … };
void InitializeSharedGpuContextGLES2(
viz::TestContextProvider* context_provider,
cc::ImageDecodeCache* cache = nullptr,
SetIsContextLost set_context_lost = SetIsContextLost::kNotModifyValue);
void InitializeSharedGpuContextRaster(
viz::TestContextProvider* context_provider,
cc::ImageDecodeCache* cache = nullptr,
SetIsContextLost set_context_lost = SetIsContextLost::kNotModifyValue);
}
#endif