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 28 matching lines...) Expand all Loading... |
39 API_ID_PPB_SURFACE_3D, | 39 API_ID_PPB_SURFACE_3D, |
40 API_ID_PPB_TALK, | 40 API_ID_PPB_TALK, |
41 API_ID_PPB_TESTING, | 41 API_ID_PPB_TESTING, |
42 API_ID_PPB_TEXT_INPUT, | 42 API_ID_PPB_TEXT_INPUT, |
43 API_ID_PPB_URL_RESPONSE_INFO, | 43 API_ID_PPB_URL_RESPONSE_INFO, |
44 API_ID_PPB_VAR_ARRAY_BUFFER, | 44 API_ID_PPB_VAR_ARRAY_BUFFER, |
45 API_ID_PPB_VAR_DEPRECATED, | 45 API_ID_PPB_VAR_DEPRECATED, |
46 API_ID_PPB_VIDEO_CAPTURE_DEV, | 46 API_ID_PPB_VIDEO_CAPTURE_DEV, |
47 API_ID_PPB_VIDEO_DECODER_DEV, | 47 API_ID_PPB_VIDEO_DECODER_DEV, |
48 API_ID_PPB_X509_CERTIFICATE_PRIVATE, | 48 API_ID_PPB_X509_CERTIFICATE_PRIVATE, |
49 | |
50 API_ID_PPP_CLASS, | 49 API_ID_PPP_CLASS, |
51 // TODO(tomfinegan): Remove this after we refactor things to load the PPP | 50 // TODO(tomfinegan): Remove this after we refactor things to load the PPP |
52 // interface struct from the PPB interface. | 51 // interface struct from the PPB interface. |
53 API_ID_PPP_CONTENT_DECRYPTOR_PRIVATE, | 52 API_ID_PPP_CONTENT_DECRYPTOR_PRIVATE, |
54 API_ID_PPP_GRAPHICS_3D, | 53 API_ID_PPP_GRAPHICS_3D, |
55 API_ID_PPP_INPUT_EVENT, | 54 API_ID_PPP_INPUT_EVENT, |
56 API_ID_PPP_INSTANCE, | 55 API_ID_PPP_INSTANCE, |
57 API_ID_PPP_INSTANCE_PRIVATE, | 56 API_ID_PPP_INSTANCE_PRIVATE, |
58 API_ID_PPP_MESSAGING, | 57 API_ID_PPP_MESSAGING, |
59 API_ID_PPP_MOUSE_LOCK, | 58 API_ID_PPP_MOUSE_LOCK, |
60 API_ID_PPP_PDF, | 59 API_ID_PPP_PDF, |
61 API_ID_PPP_PRINTING, | 60 API_ID_PPP_PRINTING, |
62 API_ID_PPP_TEXT_INPUT, | 61 API_ID_PPP_TEXT_INPUT, |
63 API_ID_PPP_VIDEO_CAPTURE_DEV, | 62 API_ID_PPP_VIDEO_CAPTURE_DEV, |
64 API_ID_PPP_VIDEO_DECODER_DEV, | 63 API_ID_PPP_VIDEO_DECODER_DEV, |
65 | |
66 API_ID_RESOURCE_CREATION, | 64 API_ID_RESOURCE_CREATION, |
67 | 65 |
68 // Must be last to indicate the number of interface IDs. | 66 // Must be last to indicate the number of interface IDs. |
69 API_ID_COUNT | 67 API_ID_COUNT |
70 }; | 68 }; |
71 | 69 |
72 } // namespace ppapi | 70 } // namespace ppapi |
73 | 71 |
74 #endif // PPAPI_SHARED_IMPL_API_ID_H_ | 72 #endif // PPAPI_SHARED_IMPL_API_ID_H_ |
OLD | NEW |