OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef MEDIA_BLINK_WEBCONTENTDECRYPTIONMODULEACCESS_IMPL_H_ | 5 #ifndef MEDIA_BLINK_WEBCONTENTDECRYPTIONMODULEACCESS_IMPL_H_ |
6 #define MEDIA_BLINK_WEBCONTENTDECRYPTIONMODULEACCESS_IMPL_H_ | 6 #define MEDIA_BLINK_WEBCONTENTDECRYPTIONMODULEACCESS_IMPL_H_ |
7 | 7 |
| 8 #include "base/macros.h" |
8 #include "base/memory/weak_ptr.h" | 9 #include "base/memory/weak_ptr.h" |
9 #include "media/base/cdm_config.h" | 10 #include "media/base/cdm_config.h" |
10 #include "third_party/WebKit/public/platform/WebContentDecryptionModuleAccess.h" | 11 #include "third_party/WebKit/public/platform/WebContentDecryptionModuleAccess.h" |
11 #include "third_party/WebKit/public/platform/WebContentDecryptionModuleResult.h" | 12 #include "third_party/WebKit/public/platform/WebContentDecryptionModuleResult.h" |
12 #include "third_party/WebKit/public/platform/WebMediaKeySystemConfiguration.h" | 13 #include "third_party/WebKit/public/platform/WebMediaKeySystemConfiguration.h" |
13 #include "third_party/WebKit/public/platform/WebSecurityOrigin.h" | 14 #include "third_party/WebKit/public/platform/WebSecurityOrigin.h" |
14 #include "third_party/WebKit/public/platform/WebString.h" | 15 #include "third_party/WebKit/public/platform/WebString.h" |
15 | 16 |
16 namespace media { | 17 namespace media { |
17 | 18 |
(...skipping 30 matching lines...) Expand all Loading... |
48 | 49 |
49 // Keep a WeakPtr as client is owned by render_frame_impl. | 50 // Keep a WeakPtr as client is owned by render_frame_impl. |
50 base::WeakPtr<WebEncryptedMediaClientImpl> client_; | 51 base::WeakPtr<WebEncryptedMediaClientImpl> client_; |
51 | 52 |
52 DISALLOW_COPY_AND_ASSIGN(WebContentDecryptionModuleAccessImpl); | 53 DISALLOW_COPY_AND_ASSIGN(WebContentDecryptionModuleAccessImpl); |
53 }; | 54 }; |
54 | 55 |
55 } // namespace media | 56 } // namespace media |
56 | 57 |
57 #endif // MEDIA_BLINK_WEBCONTENTDECRYPTIONMODULEACCESS_IMPL_H_ | 58 #endif // MEDIA_BLINK_WEBCONTENTDECRYPTIONMODULEACCESS_IMPL_H_ |
OLD | NEW |