blob: 421df2ad6dbe28aeeefb68bb6bf572d1d878559a [file] [log] [blame]
Kaido Kertda45c042022-05-09 11:08:54 -07001// Copyright 2017 The Cobalt Authors. All Rights Reserved.
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15#include "starboard/shared/win32/drm_system_playready.h"
16
17#include "starboard/configuration.h"
18
19namespace starboard {
20namespace shared {
21namespace win32 {
22
23scoped_refptr<DrmSystemPlayready::License> DrmSystemPlayready::License::Create(
24 const void* initialization_data,
25 int initialization_data_size) {
26 return NULL;
27}
28
29} // namespace win32
30} // namespace shared
31} // namespace starboard