blob: 504dfbf4a6919bd325f2c8c6c8d35600d455db1d [file] [log] [blame]
Ben Murdoch07a852d2014-03-31 11:51:52 +01001// Copyright 2014 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
5#ifndef MediaKeysClientImpl_h
6#define MediaKeysClientImpl_h
7
8#include "modules/encryptedmedia/MediaKeysClient.h"
9#include "wtf/PassOwnPtr.h"
10
11namespace blink {
12
13class WebContentDecryptionModule;
14class WebViewImpl;
15
16class MediaKeysClientImpl FINAL : public WebCore::MediaKeysClient {
17public:
18 MediaKeysClientImpl();
19
20 // WebCore::MediaKeysClient implementation.
21 virtual PassOwnPtr<WebContentDecryptionModule> createContentDecryptionModule(WebCore::ExecutionContext*, const String& keySystem) OVERRIDE;
22};
23
24} // namespace blink
25
26#endif // MediaKeysClientImpl_h