Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / web / MediaKeysClientImpl.h
1 // 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
11 namespace blink {
12
13 class WebContentDecryptionModule;
14
15 class MediaKeysClientImpl final : public MediaKeysClient {
16 public:
17     MediaKeysClientImpl();
18
19     // MediaKeysClient implementation.
20     virtual PassOwnPtr<WebContentDecryptionModule> createContentDecryptionModule(ExecutionContext*, const String& keySystem) override;
21 };
22
23 } // namespace blink
24
25 #endif // MediaKeysClientImpl_h