blob: 2b4e9d5de13cfe910878047c9409b7c12dc01500 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
// Copyright 2014 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 MEDIA_BLINK_WEBENCRYPTEDMEDIACLIENT_IMPL_H_
#define MEDIA_BLINK_WEBENCRYPTEDMEDIACLIENT_IMPL_H_
#include "base/memory/scoped_ptr.h"
#include "media/base/cdm_factory.h"
#include "media/base/media_export.h"
#include "third_party/WebKit/public/platform/WebEncryptedMediaClient.h"
#include "third_party/WebKit/public/web/WebSecurityOrigin.h"
namespace media {
class MEDIA_EXPORT WebEncryptedMediaClientImpl
: public blink::WebEncryptedMediaClient {
public:
WebEncryptedMediaClientImpl(scoped_ptr<CdmFactory> cdm_factory);
virtual ~WebEncryptedMediaClientImpl();
// WebEncryptedMediaClient implementation.
virtual void requestMediaKeySystemAccess(
blink::WebEncryptedMediaRequest request);
private:
scoped_ptr<CdmFactory> cdm_factory_;
};
} // namespace media
#endif // MEDIA_BLINK_WEBENCRYPTEDMEDIACLIENT_IMPL_H_
|