| Index: media/base/android/media_client_android.cc
|
| diff --git a/media/base/android/media_client_android.cc b/media/base/android/media_client_android.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..049054cdb2a845e21c18460126eb73d6a5c6ccbd
|
| --- /dev/null
|
| +++ b/media/base/android/media_client_android.cc
|
| @@ -0,0 +1,39 @@
|
| +// Copyright 2015 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#include "media/base/android/media_client_android.h"
|
| +
|
| +#include "base/logging.h"
|
| +
|
| +namespace media {
|
| +
|
| +static MediaClientAndroid* g_media_client = nullptr;
|
| +
|
| +void SetMediaClientAndroid(MediaClientAndroid* media_client) {
|
| + DCHECK(!g_media_client);
|
| + g_media_client = media_client;
|
| +}
|
| +
|
| +MediaClientAndroid* GetMediaClientAndroid() {
|
| + return g_media_client;
|
| +}
|
| +
|
| +MediaClientAndroid::MediaClientAndroid() {
|
| +}
|
| +
|
| +MediaClientAndroid::~MediaClientAndroid() {
|
| +}
|
| +
|
| +std::vector<std::pair<std::string, std::vector<uint8_t>>>
|
| +MediaClientAndroid::GetKeySystemUUIDMappings() const {
|
| + return std::vector<std::pair<std::string, std::vector<uint8_t>>>();
|
| +}
|
| +
|
| +media::MediaDrmBridgeDelegate* MediaClientAndroid::GetMediaDrmBridgeDelegate(
|
| + const std::vector<uint8_t>& scheme_uuid) const {
|
| + return nullptr;
|
| +}
|
| +
|
| +
|
| +} // namespace media
|
|
|