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/shared_impl/function_group_base.h" | 10 #include "ppapi/shared_impl/function_group_base.h" |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 virtual PP_Resource CreateFlashNetConnector(PP_Instance instance) OVERRIDE; | 61 virtual PP_Resource CreateFlashNetConnector(PP_Instance instance) OVERRIDE; |
62 virtual PP_Resource CreateGraphics2D(PP_Instance pp_instance, | 62 virtual PP_Resource CreateGraphics2D(PP_Instance pp_instance, |
63 const PP_Size& size, | 63 const PP_Size& size, |
64 PP_Bool is_always_opaque) OVERRIDE; | 64 PP_Bool is_always_opaque) OVERRIDE; |
65 virtual PP_Resource CreateGraphics3D(PP_Instance instance, | 65 virtual PP_Resource CreateGraphics3D(PP_Instance instance, |
66 PP_Resource share_context, | 66 PP_Resource share_context, |
67 const int32_t* attrib_list) OVERRIDE; | 67 const int32_t* attrib_list) OVERRIDE; |
68 virtual PP_Resource CreateGraphics3DRaw(PP_Instance instance, | 68 virtual PP_Resource CreateGraphics3DRaw(PP_Instance instance, |
69 PP_Resource share_context, | 69 PP_Resource share_context, |
70 const int32_t* attrib_list) OVERRIDE; | 70 const int32_t* attrib_list) OVERRIDE; |
| 71 virtual PP_Resource CreateHostResolverPrivate(PP_Instance instance) OVERRIDE; |
71 virtual PP_Resource CreateImageData(PP_Instance instance, | 72 virtual PP_Resource CreateImageData(PP_Instance instance, |
72 PP_ImageDataFormat format, | 73 PP_ImageDataFormat format, |
73 const PP_Size& size, | 74 const PP_Size& size, |
74 PP_Bool init_to_zero) OVERRIDE; | 75 PP_Bool init_to_zero) OVERRIDE; |
75 virtual PP_Resource CreateKeyboardInputEvent( | 76 virtual PP_Resource CreateKeyboardInputEvent( |
76 PP_Instance instance, | 77 PP_Instance instance, |
77 PP_InputEvent_Type type, | 78 PP_InputEvent_Type type, |
78 PP_TimeTicks time_stamp, | 79 PP_TimeTicks time_stamp, |
79 uint32_t modifiers, | 80 uint32_t modifiers, |
80 uint32_t key_code, | 81 uint32_t key_code, |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
126 PP_Bool scroll_by_page) OVERRIDE; | 127 PP_Bool scroll_by_page) OVERRIDE; |
127 | 128 |
128 private: | 129 private: |
129 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); | 130 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); |
130 }; | 131 }; |
131 | 132 |
132 } // namespace ppapi | 133 } // namespace ppapi |
133 } // namespace webkit | 134 } // namespace webkit |
134 | 135 |
135 #endif // WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ | 136 #endif // WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ |
OLD | NEW |