blob: 3aca17d13822aefb4a3072706df1aaa7f414d143 [file] [log] [blame]
gunsch2288c532015-04-30 03:58:451// Copyright 2015 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
xhwangf258baa2016-04-28 22:44:215#include "chrome/common/chrome_media_client_android.h"
gunsch2288c532015-04-30 03:58:456
xhwangf258baa2016-04-28 22:44:217ChromeMediaClientAndroid::ChromeMediaClientAndroid() {}
gunsch2288c532015-04-30 03:58:458
xhwangf258baa2016-04-28 22:44:219ChromeMediaClientAndroid::~ChromeMediaClientAndroid() {}
gunsch2288c532015-04-30 03:58:4510
11media::MediaDrmBridgeDelegate*
12ChromeMediaClientAndroid::GetMediaDrmBridgeDelegate(
13 const std::vector<uint8_t>& scheme_uuid) {
14 if (scheme_uuid == widevine_delegate_.GetUUID())
15 return &widevine_delegate_;
16 return nullptr;
17}