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 pp { | 8 namespace pp { |
9 namespace proxy { | 9 namespace proxy { |
10 | 10 |
(...skipping 25 matching lines...) Expand all Loading... |
36 INTERFACE_ID_PPB_IMAGE_DATA, | 36 INTERFACE_ID_PPB_IMAGE_DATA, |
37 INTERFACE_ID_PPB_INSTANCE, | 37 INTERFACE_ID_PPB_INSTANCE, |
38 INTERFACE_ID_PPB_OPENGLES2, | 38 INTERFACE_ID_PPB_OPENGLES2, |
39 INTERFACE_ID_PPB_PDF, | 39 INTERFACE_ID_PPB_PDF, |
40 INTERFACE_ID_PPB_SURFACE_3D, | 40 INTERFACE_ID_PPB_SURFACE_3D, |
41 INTERFACE_ID_PPB_TESTING, | 41 INTERFACE_ID_PPB_TESTING, |
42 INTERFACE_ID_PPB_URL_LOADER, | 42 INTERFACE_ID_PPB_URL_LOADER, |
43 INTERFACE_ID_PPB_URL_LOADER_TRUSTED, | 43 INTERFACE_ID_PPB_URL_LOADER_TRUSTED, |
44 INTERFACE_ID_PPB_URL_REQUEST_INFO, | 44 INTERFACE_ID_PPB_URL_REQUEST_INFO, |
45 INTERFACE_ID_PPB_URL_RESPONSE_INFO, | 45 INTERFACE_ID_PPB_URL_RESPONSE_INFO, |
| 46 INTERFACE_ID_PPB_URL_UTIL, |
46 INTERFACE_ID_PPB_VAR, | 47 INTERFACE_ID_PPB_VAR, |
47 INTERFACE_ID_PPB_VAR_DEPRECATED, | 48 INTERFACE_ID_PPB_VAR_DEPRECATED, |
48 | 49 |
49 INTERFACE_ID_PPP_CLASS, | 50 INTERFACE_ID_PPP_CLASS, |
50 INTERFACE_ID_PPP_INSTANCE, | 51 INTERFACE_ID_PPP_INSTANCE, |
51 | 52 |
52 // Must be last to indicate the number of interface IDs. | 53 // Must be last to indicate the number of interface IDs. |
53 INTERFACE_ID_COUNT | 54 INTERFACE_ID_COUNT |
54 }; | 55 }; |
55 | 56 |
56 } // namespace proxy | 57 } // namespace proxy |
57 } // namespace pp | 58 } // namespace pp |
58 | 59 |
59 #endif // PPAPI_PROXY_INTERFACE_ID_H_ | 60 #endif // PPAPI_PROXY_INTERFACE_ID_H_ |
OLD | NEW |