OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 PPAPI_CPP_PRIVATE_CONTENT_DECRYPTOR_PRIVATE_H_ | 5 #ifndef PPAPI_CPP_PRIVATE_CONTENT_DECRYPTOR_PRIVATE_H_ |
6 #define PPAPI_CPP_PRIVATE_CONTENT_DECRYPTOR_PRIVATE_H_ | 6 #define PPAPI_CPP_PRIVATE_CONTENT_DECRYPTOR_PRIVATE_H_ |
7 | 7 |
| 8 #include <stdint.h> |
| 9 |
8 #include <string> | 10 #include <string> |
9 #include <vector> | 11 #include <vector> |
10 | 12 |
11 #include "ppapi/c/private/pp_content_decryptor.h" | 13 #include "ppapi/c/private/pp_content_decryptor.h" |
12 #include "ppapi/c/private/ppb_content_decryptor_private.h" | 14 #include "ppapi/c/private/ppb_content_decryptor_private.h" |
13 #include "ppapi/c/private/ppp_content_decryptor_private.h" | 15 #include "ppapi/c/private/ppp_content_decryptor_private.h" |
14 | 16 |
15 #include "ppapi/cpp/dev/buffer_dev.h" | 17 #include "ppapi/cpp/dev/buffer_dev.h" |
16 #include "ppapi/cpp/instance_handle.h" | 18 #include "ppapi/cpp/instance_handle.h" |
17 #include "ppapi/cpp/var.h" | 19 #include "ppapi/cpp/var.h" |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
123 void DeliverSamples(pp::Buffer_Dev audio_frames, | 125 void DeliverSamples(pp::Buffer_Dev audio_frames, |
124 const PP_DecryptedSampleInfo& decrypted_sample_info); | 126 const PP_DecryptedSampleInfo& decrypted_sample_info); |
125 | 127 |
126 private: | 128 private: |
127 InstanceHandle associated_instance_; | 129 InstanceHandle associated_instance_; |
128 }; | 130 }; |
129 | 131 |
130 } // namespace pp | 132 } // namespace pp |
131 | 133 |
132 #endif // PPAPI_CPP_PRIVATE_CONTENT_DECRYPTOR_PRIVATE_H_ | 134 #endif // PPAPI_CPP_PRIVATE_CONTENT_DECRYPTOR_PRIVATE_H_ |
OLD | NEW |