OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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 // IPC messages for content decryption module (CDM) implementation. | 5 // IPC messages for content decryption module (CDM) implementation. |
6 // Multiply-included message file, hence no include guard. | 6 // Multiply-included message file, hence no include guard. |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 uint32_t /* session_id */) | 60 uint32_t /* session_id */) |
61 | 61 |
62 IPC_MESSAGE_ROUTED2(CdmMsg_SessionClosed, | 62 IPC_MESSAGE_ROUTED2(CdmMsg_SessionClosed, |
63 int /* cdm_id */, | 63 int /* cdm_id */, |
64 uint32_t /* session_id */) | 64 uint32_t /* session_id */) |
65 | 65 |
66 IPC_MESSAGE_ROUTED4(CdmMsg_SessionError, | 66 IPC_MESSAGE_ROUTED4(CdmMsg_SessionError, |
67 int /* cdm_id */, | 67 int /* cdm_id */, |
68 uint32_t /* session_id */, | 68 uint32_t /* session_id */, |
69 media::MediaKeys::KeyError /* error_code */, | 69 media::MediaKeys::KeyError /* error_code */, |
70 int /* system_code */) | 70 uint32_t /* system_code */) |
OLD | NEW |