| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 14 matching lines...) Expand all Loading... |
| 25 API_ID_PPB_FILE_SYSTEM, | 25 API_ID_PPB_FILE_SYSTEM, |
| 26 API_ID_PPB_FLASH, | 26 API_ID_PPB_FLASH, |
| 27 API_ID_PPB_FLASH_CLIPBOARD, | 27 API_ID_PPB_FLASH_CLIPBOARD, |
| 28 API_ID_PPB_FLASH_FILE_FILEREF, | 28 API_ID_PPB_FLASH_FILE_FILEREF, |
| 29 API_ID_PPB_FLASH_FILE_MODULELOCAL, | 29 API_ID_PPB_FLASH_FILE_MODULELOCAL, |
| 30 API_ID_PPB_FLASH_MENU, | 30 API_ID_PPB_FLASH_MENU, |
| 31 API_ID_PPB_FLASH_NETCONNECTOR, | 31 API_ID_PPB_FLASH_NETCONNECTOR, |
| 32 API_ID_PPB_FONT, | 32 API_ID_PPB_FONT, |
| 33 API_ID_PPB_GRAPHICS_2D, | 33 API_ID_PPB_GRAPHICS_2D, |
| 34 API_ID_PPB_GRAPHICS_3D, | 34 API_ID_PPB_GRAPHICS_3D, |
| 35 API_ID_PPB_IMAGE_DATA, |
| 35 API_ID_PPB_INSTANCE, | 36 API_ID_PPB_INSTANCE, |
| 36 API_ID_PPB_INSTANCE_PRIVATE, | 37 API_ID_PPB_INSTANCE_PRIVATE, |
| 37 API_ID_PPB_OPENGLES2, | 38 API_ID_PPB_OPENGLES2, |
| 38 API_ID_PPB_PDF, | 39 API_ID_PPB_PDF, |
| 39 API_ID_PPB_SURFACE_3D, | 40 API_ID_PPB_SURFACE_3D, |
| 40 API_ID_PPB_TCPSOCKET_PRIVATE, | 41 API_ID_PPB_TCPSOCKET_PRIVATE, |
| 41 API_ID_PPB_TESTING, | 42 API_ID_PPB_TESTING, |
| 42 API_ID_PPB_TEXT_INPUT, | 43 API_ID_PPB_TEXT_INPUT, |
| 43 API_ID_PPB_UDPSOCKET_PRIVATE, | 44 API_ID_PPB_UDPSOCKET_PRIVATE, |
| 44 API_ID_PPB_URL_LOADER, | 45 API_ID_PPB_URL_LOADER, |
| (...skipping 14 matching lines...) Expand all Loading... |
| 59 | 60 |
| 60 API_ID_RESOURCE_CREATION, | 61 API_ID_RESOURCE_CREATION, |
| 61 | 62 |
| 62 // Must be last to indicate the number of interface IDs. | 63 // Must be last to indicate the number of interface IDs. |
| 63 API_ID_COUNT | 64 API_ID_COUNT |
| 64 }; | 65 }; |
| 65 | 66 |
| 66 } // namespace ppapi | 67 } // namespace ppapi |
| 67 | 68 |
| 68 #endif // PPAPI_SHARED_IMPL_API_ID_H_ | 69 #endif // PPAPI_SHARED_IMPL_API_ID_H_ |
| OLD | NEW |