// 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 GPU_COMMAND_BUFFER_CLIENT_WEBGPU_INTERFACE_STUB_H_ #define GPU_COMMAND_BUFFER_CLIENT_WEBGPU_INTERFACE_STUB_H_ #include "gpu/command_buffer/client/webgpu_interface.h" namespace gpu { namespace webgpu { // This class a stub to help with mocks for the WebGPUInterface class. class WebGPUInterfaceStub : public WebGPUInterface { … }; } // namespace webgpu } // namespace gpu #endif // GPU_COMMAND_BUFFER_CLIENT_WEBGPU_INTERFACE_STUB_H_