24 lines
900 B
C++
24 lines
900 B
C++
////////////////////////////////////////////////////////////////////////////////
|
|
// Copyright 2020 Google LLC.
|
|
//
|
|
// This software is licensed under the terms defined in the Widevine Master
|
|
// License Agreement. For a copy of this agreement, please contact
|
|
// widevine-licensing@google.com.
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
#include "common/playready_sdk_impl.h"
|
|
|
|
#include "absl/status/status.h"
|
|
#include "absl/strings/escaping.h"
|
|
#include "util/task/codes.pb.h"
|
|
|
|
namespace widevine {
|
|
|
|
// TODO(user): fill in SendToPlayReady function.
|
|
util::Status PlayReadySdkImpl::SendToPlayReady(
|
|
const std::string& playready_challenge, const std::string& provider,
|
|
const std::string& content_id, const std::list<License::KeyContainer>& keys,
|
|
const License::Policy& policy, std::string* playready_license) {
|
|
return OkStatus;
|
|
}
|
|
} // namespace widevine
|