blob: c58577939403e126842f58c682a9105b37d54dd0 [file] [log] [blame]
// 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 MEDIA_BASE_SIMPLE_SYNC_TOKEN_CLIENT_H_
#define MEDIA_BASE_SIMPLE_SYNC_TOKEN_CLIENT_H_
#include "gpu/command_buffer/common/sync_token.h"
#include "media/base/media_export.h"
#include "media/base/video_frame.h"
namespace media {
class MEDIA_EXPORT SimpleSyncTokenClient : public VideoFrame::SyncTokenClient {
public:
explicit SimpleSyncTokenClient(const gpu::SyncToken& sync_token);
SimpleSyncTokenClient(const SimpleSyncTokenClient&) = delete;
SimpleSyncTokenClient& operator=(const SimpleSyncTokenClient&) = delete;
void GenerateSyncToken(gpu::SyncToken* sync_token) final;
void WaitSyncToken(const gpu::SyncToken& sync_token) final;
private:
gpu::SyncToken sync_token_;
};
} // namespace media
#endif // MEDIA_BASE_SIMPLE_SYNC_TOKEN_CLIENT_H_