// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef THIRD_PARTY_BLINK_RENDERER_PLATFORM_GRAPHICS_GPU_WEBGPU_CALLBACK_H_ #define THIRD_PARTY_BLINK_RENDERER_PLATFORM_GRAPHICS_GPU_WEBGPU_CALLBACK_H_ #include "gpu/webgpu/callback.h" namespace blink { // Alias these into the blink namespace as the gpu namespace is typically // disallowed from being used directly outside of // blink/renderer/platform/graphics/gpu. BindWGPUOnceCallback; BindWGPURepeatingCallback; MakeWGPUOnceCallback; MakeWGPURepeatingCallback; WGPUOnceCallback; WGPURepeatingCallback; } // namespace blink #endif // THIRD_PARTY_BLINK_RENDERER_PLATFORM_GRAPHICS_GPU_WEBGPU_CALLBACK_H_