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_BASE_MEDIA_KEYS_H_ | 5 #ifndef MEDIA_BASE_MEDIA_KEYS_H_ |
6 #define MEDIA_BASE_MEDIA_KEYS_H_ | 6 #define MEDIA_BASE_MEDIA_KEYS_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 const std::vector<uint8>& message, | 86 const std::vector<uint8>& message, |
87 const std::string& destination_url)> | 87 const std::string& destination_url)> |
88 SessionMessageCB; | 88 SessionMessageCB; |
89 | 89 |
90 typedef base::Callback<void(uint32 session_id)> SessionReadyCB; | 90 typedef base::Callback<void(uint32 session_id)> SessionReadyCB; |
91 | 91 |
92 typedef base::Callback<void(uint32 session_id)> SessionClosedCB; | 92 typedef base::Callback<void(uint32 session_id)> SessionClosedCB; |
93 | 93 |
94 typedef base::Callback<void(uint32 session_id, | 94 typedef base::Callback<void(uint32 session_id, |
95 media::MediaKeys::KeyError error_code, | 95 media::MediaKeys::KeyError error_code, |
96 int system_code)> SessionErrorCB; | 96 uint32 system_code)> SessionErrorCB; |
97 | 97 |
98 } // namespace media | 98 } // namespace media |
99 | 99 |
100 #endif // MEDIA_BASE_MEDIA_KEYS_H_ | 100 #endif // MEDIA_BASE_MEDIA_KEYS_H_ |
OLD | NEW |