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 |
(...skipping 12 matching lines...) Expand all Loading... |
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, | 27 API_ID_PPB_FLASH, |
28 API_ID_PPB_FLASH_CLIPBOARD, | 28 API_ID_PPB_FLASH_CLIPBOARD, |
29 API_ID_PPB_FLASH_FILE_FILEREF, | 29 API_ID_PPB_FLASH_FILE_FILEREF, |
30 API_ID_PPB_FLASH_FILE_MODULELOCAL, | 30 API_ID_PPB_FLASH_FILE_MODULELOCAL, |
31 API_ID_PPB_FLASH_MENU, | 31 API_ID_PPB_FLASH_MENU, |
32 API_ID_PPB_FLASH_MESSAGELOOP, | 32 API_ID_PPB_FLASH_MESSAGELOOP, |
33 API_ID_PPB_FLASH_NETCONNECTOR, | |
34 API_ID_PPB_FONT, | 33 API_ID_PPB_FONT, |
35 API_ID_PPB_GRAPHICS_2D, | 34 API_ID_PPB_GRAPHICS_2D, |
36 API_ID_PPB_GRAPHICS_3D, | 35 API_ID_PPB_GRAPHICS_3D, |
37 API_ID_PPB_HOSTRESOLVER_PRIVATE, | 36 API_ID_PPB_HOSTRESOLVER_PRIVATE, |
38 API_ID_PPB_IMAGE_DATA, | 37 API_ID_PPB_IMAGE_DATA, |
39 API_ID_PPB_INSTANCE, | 38 API_ID_PPB_INSTANCE, |
40 API_ID_PPB_INSTANCE_PRIVATE, | 39 API_ID_PPB_INSTANCE_PRIVATE, |
41 API_ID_PPB_NETWORKMANAGER_PRIVATE, | 40 API_ID_PPB_NETWORKMANAGER_PRIVATE, |
42 API_ID_PPB_OPENGLES2, | 41 API_ID_PPB_OPENGLES2, |
43 API_ID_PPB_PDF, | 42 API_ID_PPB_PDF, |
(...skipping 25 matching lines...) Expand all Loading... |
69 | 68 |
70 API_ID_RESOURCE_CREATION, | 69 API_ID_RESOURCE_CREATION, |
71 | 70 |
72 // Must be last to indicate the number of interface IDs. | 71 // Must be last to indicate the number of interface IDs. |
73 API_ID_COUNT | 72 API_ID_COUNT |
74 }; | 73 }; |
75 | 74 |
76 } // namespace ppapi | 75 } // namespace ppapi |
77 | 76 |
78 #endif // PPAPI_SHARED_IMPL_API_ID_H_ | 77 #endif // PPAPI_SHARED_IMPL_API_ID_H_ |
OLD | NEW |