chromium/media/base/cdm_callback_promise.h

// Copyright 2014 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_CDM_CALLBACK_PROMISE_H_
#define MEDIA_BASE_CDM_CALLBACK_PROMISE_H_

#include <stdint.h>

#include <string>

#include "base/functional/callback.h"
#include "media/base/cdm_promise.h"
#include "media/base/media_export.h"

namespace media {

PromiseRejectedCB;

template <typename... T>
class MEDIA_EXPORT CdmCallbackPromise : public CdmPromiseTemplate<T...> {};

}  // namespace media

#endif  // MEDIA_BASE_CDM_CALLBACK_PROMISE_H_