blob: 6aa1e1f07b93c6fa42e5b90a782e6d9f43c7cbcf [file] [log] [blame]
// Copyright 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef MEDIA_BASE_WAIT_AND_REPLACE_SYNC_TOKEN_CLIENT_H_
#define MEDIA_BASE_WAIT_AND_REPLACE_SYNC_TOKEN_CLIENT_H_
#include "base/macros.h"
#include "gpu/command_buffer/common/sync_token.h"
#include "media/base/media_export.h"
#include "media/base/video_frame.h"
namespace gpu {
class InterfaceBase;
}
namespace media {
class MEDIA_EXPORT WaitAndReplaceSyncTokenClient
: public VideoFrame::SyncTokenClient {
public:
explicit WaitAndReplaceSyncTokenClient(gpu::InterfaceBase* ib);
void GenerateSyncToken(gpu::SyncToken* sync_token) final;
void WaitSyncToken(const gpu::SyncToken& sync_token) final;
private:
gpu::InterfaceBase* ib_;
DISALLOW_COPY_AND_ASSIGN(WaitAndReplaceSyncTokenClient);
};
} // namespace media
#endif // MEDIA_BASE_WAIT_AND_REPLACE_SYNC_TOKEN_CLIENT_H_