OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 WEBKIT_PLUGINS_PPAPI_RESOURCE_H_ | 5 #ifndef WEBKIT_PLUGINS_PPAPI_RESOURCE_H_ |
6 #define WEBKIT_PLUGINS_PPAPI_RESOURCE_H_ | 6 #define WEBKIT_PLUGINS_PPAPI_RESOURCE_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/ref_counted.h" | 9 #include "base/ref_counted.h" |
10 #include "ppapi/c/pp_resource.h" | 10 #include "ppapi/c/pp_resource.h" |
(...skipping 13 matching lines...) Expand all Loading... |
24 F(PPB_DirectoryReader_Impl) \ | 24 F(PPB_DirectoryReader_Impl) \ |
25 F(PPB_FileChooser_Impl) \ | 25 F(PPB_FileChooser_Impl) \ |
26 F(PPB_FileIO_Impl) \ | 26 F(PPB_FileIO_Impl) \ |
27 F(PPB_FileRef_Impl) \ | 27 F(PPB_FileRef_Impl) \ |
28 F(PPB_FileSystem_Impl) \ | 28 F(PPB_FileSystem_Impl) \ |
29 F(PPB_Font_Impl) \ | 29 F(PPB_Font_Impl) \ |
30 F(PPB_Graphics2D_Impl) \ | 30 F(PPB_Graphics2D_Impl) \ |
31 F(PPB_Graphics3D_Impl) \ | 31 F(PPB_Graphics3D_Impl) \ |
32 F(PPB_ImageData_Impl) \ | 32 F(PPB_ImageData_Impl) \ |
33 F(PPB_Scrollbar_Impl) \ | 33 F(PPB_Scrollbar_Impl) \ |
| 34 F(PPB_Surface3D_Impl) \ |
34 F(PPB_Transport_Impl) \ | 35 F(PPB_Transport_Impl) \ |
35 F(PPB_URLLoader_Impl) \ | 36 F(PPB_URLLoader_Impl) \ |
36 F(PPB_URLRequestInfo_Impl) \ | 37 F(PPB_URLRequestInfo_Impl) \ |
37 F(PPB_URLResponseInfo_Impl) \ | 38 F(PPB_URLResponseInfo_Impl) \ |
38 F(PPB_VideoDecoder_Impl) \ | 39 F(PPB_VideoDecoder_Impl) \ |
39 F(PPB_Widget_Impl) \ | 40 F(PPB_Widget_Impl) \ |
40 F(PrivateFontFile) \ | 41 F(PrivateFontFile) \ |
41 F(StringVar) \ | 42 F(StringVar) \ |
42 F(Var) \ | 43 F(Var) \ |
43 F(VarObjectClass) | 44 F(VarObjectClass) |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
133 return As##Type(); \ | 134 return As##Type(); \ |
134 } | 135 } |
135 | 136 |
136 FOR_ALL_RESOURCES(DEFINE_RESOURCE_CAST) | 137 FOR_ALL_RESOURCES(DEFINE_RESOURCE_CAST) |
137 #undef DEFINE_RESOURCE_CAST | 138 #undef DEFINE_RESOURCE_CAST |
138 | 139 |
139 } // namespace ppapi | 140 } // namespace ppapi |
140 } // namespace webkit | 141 } // namespace webkit |
141 | 142 |
142 #endif // WEBKIT_PLUGINS_PPAPI_RESOURCE_H_ | 143 #endif // WEBKIT_PLUGINS_PPAPI_RESOURCE_H_ |
OLD | NEW |