| 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 27 matching lines...) Expand all Loading... |
| 38 API_ID_PPB_INSTANCE_PRIVATE, | 38 API_ID_PPB_INSTANCE_PRIVATE, |
| 39 API_ID_PPB_OPENGLES2, | 39 API_ID_PPB_OPENGLES2, |
| 40 API_ID_PPB_PDF, | 40 API_ID_PPB_PDF, |
| 41 API_ID_PPB_SURFACE_3D, | 41 API_ID_PPB_SURFACE_3D, |
| 42 API_ID_PPB_TCPSOCKET_PRIVATE, | 42 API_ID_PPB_TCPSOCKET_PRIVATE, |
| 43 API_ID_PPB_TESTING, | 43 API_ID_PPB_TESTING, |
| 44 API_ID_PPB_TEXT_INPUT, | 44 API_ID_PPB_TEXT_INPUT, |
| 45 API_ID_PPB_UDPSOCKET_PRIVATE, | 45 API_ID_PPB_UDPSOCKET_PRIVATE, |
| 46 API_ID_PPB_URL_LOADER, | 46 API_ID_PPB_URL_LOADER, |
| 47 API_ID_PPB_URL_RESPONSE_INFO, | 47 API_ID_PPB_URL_RESPONSE_INFO, |
| 48 API_ID_PPB_VAR_ARRAY_BUFFER, |
| 48 API_ID_PPB_VAR_DEPRECATED, | 49 API_ID_PPB_VAR_DEPRECATED, |
| 49 API_ID_PPB_VIDEO_CAPTURE_DEV, | 50 API_ID_PPB_VIDEO_CAPTURE_DEV, |
| 50 API_ID_PPB_VIDEO_DECODER_DEV, | 51 API_ID_PPB_VIDEO_DECODER_DEV, |
| 51 | 52 |
| 52 API_ID_PPP_CLASS, | 53 API_ID_PPP_CLASS, |
| 53 API_ID_PPP_GRAPHICS_3D, | 54 API_ID_PPP_GRAPHICS_3D, |
| 54 API_ID_PPP_INPUT_EVENT, | 55 API_ID_PPP_INPUT_EVENT, |
| 55 API_ID_PPP_INSTANCE, | 56 API_ID_PPP_INSTANCE, |
| 56 API_ID_PPP_INSTANCE_PRIVATE, | 57 API_ID_PPP_INSTANCE_PRIVATE, |
| 57 API_ID_PPP_MESSAGING, | 58 API_ID_PPP_MESSAGING, |
| 58 API_ID_PPP_MOUSE_LOCK, | 59 API_ID_PPP_MOUSE_LOCK, |
| 59 API_ID_PPP_VIDEO_CAPTURE_DEV, | 60 API_ID_PPP_VIDEO_CAPTURE_DEV, |
| 60 API_ID_PPP_VIDEO_DECODER_DEV, | 61 API_ID_PPP_VIDEO_DECODER_DEV, |
| 61 | 62 |
| 62 API_ID_RESOURCE_CREATION, | 63 API_ID_RESOURCE_CREATION, |
| 63 | 64 |
| 64 // Must be last to indicate the number of interface IDs. | 65 // Must be last to indicate the number of interface IDs. |
| 65 API_ID_COUNT | 66 API_ID_COUNT |
| 66 }; | 67 }; |
| 67 | 68 |
| 68 } // namespace ppapi | 69 } // namespace ppapi |
| 69 | 70 |
| 70 #endif // PPAPI_SHARED_IMPL_API_ID_H_ | 71 #endif // PPAPI_SHARED_IMPL_API_ID_H_ |
| OLD | NEW |