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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 API_ID_PPB_VIDEO_DECODER_DEV, | 52 API_ID_PPB_VIDEO_DECODER_DEV, |
53 | 53 |
54 API_ID_PPP_CLASS, | 54 API_ID_PPP_CLASS, |
55 API_ID_PPP_GRAPHICS_3D, | 55 API_ID_PPP_GRAPHICS_3D, |
56 API_ID_PPP_INPUT_EVENT, | 56 API_ID_PPP_INPUT_EVENT, |
57 API_ID_PPP_INSTANCE, | 57 API_ID_PPP_INSTANCE, |
58 API_ID_PPP_INSTANCE_PRIVATE, | 58 API_ID_PPP_INSTANCE_PRIVATE, |
59 API_ID_PPP_MESSAGING, | 59 API_ID_PPP_MESSAGING, |
60 API_ID_PPP_MOUSE_LOCK, | 60 API_ID_PPP_MOUSE_LOCK, |
61 API_ID_PPP_PRINTING, | 61 API_ID_PPP_PRINTING, |
| 62 API_ID_PPP_TEXT_INPUT, |
62 API_ID_PPP_VIDEO_CAPTURE_DEV, | 63 API_ID_PPP_VIDEO_CAPTURE_DEV, |
63 API_ID_PPP_VIDEO_DECODER_DEV, | 64 API_ID_PPP_VIDEO_DECODER_DEV, |
64 | 65 |
65 API_ID_RESOURCE_CREATION, | 66 API_ID_RESOURCE_CREATION, |
66 | 67 |
67 // Must be last to indicate the number of interface IDs. | 68 // Must be last to indicate the number of interface IDs. |
68 API_ID_COUNT | 69 API_ID_COUNT |
69 }; | 70 }; |
70 | 71 |
71 } // namespace ppapi | 72 } // namespace ppapi |
72 | 73 |
73 #endif // PPAPI_SHARED_IMPL_API_ID_H_ | 74 #endif // PPAPI_SHARED_IMPL_API_ID_H_ |
OLD | NEW |