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