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_PROXY_INTERFACE_ID_H_ | 5 #ifndef PPAPI_PROXY_INTERFACE_ID_H_ |
6 #define PPAPI_PROXY_INTERFACE_ID_H_ | 6 #define PPAPI_PROXY_INTERFACE_ID_H_ |
7 | 7 |
8 namespace ppapi { | 8 namespace ppapi { |
9 namespace proxy { | 9 namespace proxy { |
10 | 10 |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 INTERFACE_ID_PPB_VAR_DEPRECATED, | 46 INTERFACE_ID_PPB_VAR_DEPRECATED, |
47 INTERFACE_ID_PPB_VIDEO_CAPTURE_DEV, | 47 INTERFACE_ID_PPB_VIDEO_CAPTURE_DEV, |
48 INTERFACE_ID_PPB_VIDEO_DECODER_DEV, | 48 INTERFACE_ID_PPB_VIDEO_DECODER_DEV, |
49 | 49 |
50 INTERFACE_ID_PPP_CLASS, | 50 INTERFACE_ID_PPP_CLASS, |
51 INTERFACE_ID_PPP_GRAPHICS_3D, | 51 INTERFACE_ID_PPP_GRAPHICS_3D, |
52 INTERFACE_ID_PPP_INPUT_EVENT, | 52 INTERFACE_ID_PPP_INPUT_EVENT, |
53 INTERFACE_ID_PPP_INSTANCE, | 53 INTERFACE_ID_PPP_INSTANCE, |
54 INTERFACE_ID_PPP_INSTANCE_PRIVATE, | 54 INTERFACE_ID_PPP_INSTANCE_PRIVATE, |
55 INTERFACE_ID_PPP_MESSAGING, | 55 INTERFACE_ID_PPP_MESSAGING, |
56 INTERFACE_ID_PPP_MOUSE_LOCK_DEV, | 56 INTERFACE_ID_PPP_MOUSE_LOCK, |
57 INTERFACE_ID_PPP_VIDEO_CAPTURE_DEV, | 57 INTERFACE_ID_PPP_VIDEO_CAPTURE_DEV, |
58 INTERFACE_ID_PPP_VIDEO_DECODER_DEV, | 58 INTERFACE_ID_PPP_VIDEO_DECODER_DEV, |
59 | 59 |
60 INTERFACE_ID_RESOURCE_CREATION, | 60 INTERFACE_ID_RESOURCE_CREATION, |
61 | 61 |
62 // Must be last to indicate the number of interface IDs. | 62 // Must be last to indicate the number of interface IDs. |
63 INTERFACE_ID_COUNT | 63 INTERFACE_ID_COUNT |
64 }; | 64 }; |
65 | 65 |
66 } // namespace proxy | 66 } // namespace proxy |
67 } // namespace ppapi | 67 } // namespace ppapi |
68 | 68 |
69 #endif // PPAPI_PROXY_INTERFACE_ID_H_ | 69 #endif // PPAPI_PROXY_INTERFACE_ID_H_ |
OLD | NEW |