Skip to content

Commit

Permalink
Unreviewed fix.
Browse files Browse the repository at this point in the history
Identifier: 273664.1396@safari-7619.1.5-branch
  • Loading branch information
MyahCobbs committed Mar 12, 2024
1 parent 66367e6 commit aa4a1fe
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Source/WebCore/Modules/WebGPU/GPUBuffer.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,14 @@
#include <wtf/RangeSet.h>
#include <wtf/Ref.h>
#include <wtf/RefCounted.h>
#include <wtf/WeakPtr.h>
#include <wtf/text/WTFString.h>

namespace WebCore {

class GPUDevice;

class GPUBuffer : public RefCounted<GPUBuffer>, CanMakeWeakPtr<GPUBuffer> {
class GPUBuffer : public RefCounted<GPUBuffer>, public CanMakeWeakPtr<GPUBuffer> {
public:
static Ref<GPUBuffer> create(Ref<WebGPU::Buffer>&& backing, size_t bufferSize, GPUBufferUsageFlags usage, bool mappedAtCreation, GPUDevice& device)
{
Expand Down

0 comments on commit aa4a1fe

Please sign in to comment.