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 WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ | 5 #ifndef WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ |
6 #define WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ | 6 #define WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "ppapi/thunk/resource_creation_api.h" | 10 #include "ppapi/thunk/resource_creation_api.h" |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 PP_PrivateFontCharset charset) OVERRIDE; | 47 PP_PrivateFontCharset charset) OVERRIDE; |
48 virtual PP_Resource CreateFlashMenu(PP_Instance instance, | 48 virtual PP_Resource CreateFlashMenu(PP_Instance instance, |
49 const PP_Flash_Menu* menu_data) OVERRIDE; | 49 const PP_Flash_Menu* menu_data) OVERRIDE; |
50 virtual PP_Resource CreateFlashMessageLoop(PP_Instance instance) OVERRIDE; | 50 virtual PP_Resource CreateFlashMessageLoop(PP_Instance instance) OVERRIDE; |
51 virtual PP_Resource CreateGraphics3D(PP_Instance instance, | 51 virtual PP_Resource CreateGraphics3D(PP_Instance instance, |
52 PP_Resource share_context, | 52 PP_Resource share_context, |
53 const int32_t* attrib_list) OVERRIDE; | 53 const int32_t* attrib_list) OVERRIDE; |
54 virtual PP_Resource CreateGraphics3DRaw(PP_Instance instance, | 54 virtual PP_Resource CreateGraphics3DRaw(PP_Instance instance, |
55 PP_Resource share_context, | 55 PP_Resource share_context, |
56 const int32_t* attrib_list) OVERRIDE; | 56 const int32_t* attrib_list) OVERRIDE; |
57 virtual PP_Resource CreateHostResolverPrivate(PP_Instance instance) OVERRIDE; | |
58 virtual PP_Resource CreateImageData(PP_Instance instance, | 57 virtual PP_Resource CreateImageData(PP_Instance instance, |
59 PP_ImageDataFormat format, | 58 PP_ImageDataFormat format, |
60 const PP_Size& size, | 59 const PP_Size& size, |
61 PP_Bool init_to_zero) OVERRIDE; | 60 PP_Bool init_to_zero) OVERRIDE; |
62 virtual PP_Resource CreateImageDataNaCl(PP_Instance instance, | 61 virtual PP_Resource CreateImageDataNaCl(PP_Instance instance, |
63 PP_ImageDataFormat format, | 62 PP_ImageDataFormat format, |
64 const PP_Size& size, | 63 const PP_Size& size, |
65 PP_Bool init_to_zero) OVERRIDE; | 64 PP_Bool init_to_zero) OVERRIDE; |
66 virtual PP_Resource CreateIMEInputEvent(PP_Instance instance, | 65 virtual PP_Resource CreateIMEInputEvent(PP_Instance instance, |
67 PP_InputEvent_Type type, | 66 PP_InputEvent_Type type, |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
125 PP_Instance instance) OVERRIDE; | 124 PP_Instance instance) OVERRIDE; |
126 | 125 |
127 private: | 126 private: |
128 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); | 127 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); |
129 }; | 128 }; |
130 | 129 |
131 } // namespace ppapi | 130 } // namespace ppapi |
132 } // namespace webkit | 131 } // namespace webkit |
133 | 132 |
134 #endif // WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ | 133 #endif // WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ |
OLD | NEW |