blob: a68e84563c2ff79520954f662b5b5225cf39b304 [file] [log] [blame]
// 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.
#ifndef ANDROID_WEBVIEW_COMMON_AW_MEDIA_DRM_BRIDGE_CLIENT_H_
#define ANDROID_WEBVIEW_COMMON_AW_MEDIA_DRM_BRIDGE_CLIENT_H_
#include "base/macros.h"
#include "components/cdm/common/widevine_drm_delegate_android.h"
#include "media/base/android/media_drm_bridge_client.h"
namespace android_webview {
class AwMediaDrmBridgeClient : public media::MediaDrmBridgeClient {
public:
// |key_system_uuid_mappings| is a list of strings containing key-system/UUID
// pairs, in the format "key system name,UUID as string".
explicit AwMediaDrmBridgeClient(
const std::vector<std::string>& key_system_uuid_mappings);
~AwMediaDrmBridgeClient() override;
private:
// media::MediaDrmBridgeClient implementation:
void AddKeySystemUUIDMappings(KeySystemUuidMap* map) override;
media::MediaDrmBridgeDelegate* GetMediaDrmBridgeDelegate(
const media::UUID& scheme_uuid) override;
std::vector<std::string> key_system_uuid_mappings_;
cdm::WidevineDrmDelegateAndroid widevine_delegate_;
DISALLOW_COPY_AND_ASSIGN(AwMediaDrmBridgeClient);
};
} // namespace android_webview
#endif // ANDROID_WEBVIEW_COMMON_AW_MEDIA_DRM_BRIDGE_CLIENT_H_