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_SHARED_IMPL_API_ID_H_ | 5 #ifndef PPAPI_SHARED_IMPL_API_ID_H_ |
6 #define PPAPI_SHARED_IMPL_API_ID_H_ | 6 #define PPAPI_SHARED_IMPL_API_ID_H_ |
7 | 7 |
8 namespace ppapi { | 8 namespace ppapi { |
9 | 9 |
10 // These numbers must be all small integers. They are used in a lookup table | 10 // These numbers must be all small integers. They are used in a lookup table |
11 // to route messages to the appropriate message handler. | 11 // to route messages to the appropriate message handler. |
12 enum ApiID { | 12 enum ApiID { |
13 // Zero is reserved for control messages. | 13 // Zero is reserved for control messages. |
14 API_ID_NONE = 0, | 14 API_ID_NONE = 0, |
15 API_ID_PPB_AUDIO = 1, | 15 API_ID_PPB_AUDIO = 1, |
16 API_ID_PPB_AUDIO_CONFIG, | 16 API_ID_PPB_AUDIO_CONFIG, |
17 API_ID_PPB_AUDIO_INPUT_DEV, | 17 API_ID_PPB_AUDIO_INPUT_DEV, |
18 API_ID_PPB_BROKER, | 18 API_ID_PPB_BROKER, |
19 API_ID_PPB_BUFFER, | 19 API_ID_PPB_BUFFER, |
20 API_ID_PPB_CONTEXT_3D, | 20 API_ID_PPB_CONTEXT_3D, |
21 API_ID_PPB_CORE, | 21 API_ID_PPB_CORE, |
22 API_ID_PPB_CURSORCONTROL, | 22 API_ID_PPB_CURSORCONTROL, |
23 API_ID_PPB_FILE_CHOOSER, | 23 API_ID_PPB_FILE_CHOOSER, |
24 API_ID_PPB_FILE_IO, | 24 API_ID_PPB_FILE_IO, |
25 API_ID_PPB_FILE_REF, | 25 API_ID_PPB_FILE_REF, |
26 API_ID_PPB_FILE_SYSTEM, | 26 API_ID_PPB_FILE_SYSTEM, |
27 API_ID_PPB_FLASH, | |
28 API_ID_PPB_FLASH_DEVICE_ID, | 27 API_ID_PPB_FLASH_DEVICE_ID, |
29 API_ID_PPB_FLASH_FONTFILE, | 28 API_ID_PPB_FLASH_FONTFILE, |
30 API_ID_PPB_FLASH_MENU, | 29 API_ID_PPB_FLASH_MENU, |
31 API_ID_PPB_FLASH_MESSAGELOOP, | 30 API_ID_PPB_FLASH_MESSAGELOOP, |
32 API_ID_PPB_FONT, | 31 API_ID_PPB_FONT, |
33 API_ID_PPB_GRAPHICS_2D, | 32 API_ID_PPB_GRAPHICS_2D, |
34 API_ID_PPB_GRAPHICS_3D, | 33 API_ID_PPB_GRAPHICS_3D, |
35 API_ID_PPB_HOSTRESOLVER_PRIVATE, | 34 API_ID_PPB_HOSTRESOLVER_PRIVATE, |
36 API_ID_PPB_IMAGE_DATA, | 35 API_ID_PPB_IMAGE_DATA, |
37 API_ID_PPB_INSTANCE, | 36 API_ID_PPB_INSTANCE, |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 | 70 |
72 API_ID_RESOURCE_CREATION, | 71 API_ID_RESOURCE_CREATION, |
73 | 72 |
74 // Must be last to indicate the number of interface IDs. | 73 // Must be last to indicate the number of interface IDs. |
75 API_ID_COUNT | 74 API_ID_COUNT |
76 }; | 75 }; |
77 | 76 |
78 } // namespace ppapi | 77 } // namespace ppapi |
79 | 78 |
80 #endif // PPAPI_SHARED_IMPL_API_ID_H_ | 79 #endif // PPAPI_SHARED_IMPL_API_ID_H_ |
OLD | NEW |