910e62b5创建于 1月15日历史提交
// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "components/cdm/common/clearkey_drm_delegate_android.h"

#include <cstdint>
#include <vector>

#include "media/cdm/clear_key_cdm_common.h"

namespace cdm {

ClearKeyDrmDelegateAndroid::ClearKeyDrmDelegateAndroid() = default;

ClearKeyDrmDelegateAndroid::~ClearKeyDrmDelegateAndroid() = default;

const std::vector<uint8_t> ClearKeyDrmDelegateAndroid::GetUUID() const {
  return std::vector<uint8_t>(std::begin(media::kClearKeyUuid),
                              std::end(media::kClearKeyUuid));
}

}  // namespace cdm