// Copyright 2018 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifdef UNSAFE_BUFFERS_BUILD // TODO(crbug.com/40285824): Remove this and convert code to safer constructs. #pragma allow_unsafe_buffers #endif #ifndef GPU_COMMAND_BUFFER_CLIENT_MOCK_TRANSFER_BUFFER_H_ #define GPU_COMMAND_BUFFER_CLIENT_MOCK_TRANSFER_BUFFER_H_ #include "base/memory/raw_ptr.h" #include "base/memory/stack_allocated.h" #include "gpu/command_buffer/client/ring_buffer.h" #include "gpu/command_buffer/client/transfer_buffer.h" namespace gpu { class CommandBuffer; class MockTransferBuffer : public TransferBufferInterface { … }; } // namespace gpu #endif // GPU_COMMAND_BUFFER_CLIENT_MOCK_TRANSFER_BUFFER_H_