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 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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 uint32_t key_code, | 83 uint32_t key_code, |
84 PP_Var character_text) OVERRIDE; | 84 PP_Var character_text) OVERRIDE; |
85 virtual PP_Resource CreateMouseInputEvent( | 85 virtual PP_Resource CreateMouseInputEvent( |
86 PP_Instance instance, | 86 PP_Instance instance, |
87 PP_InputEvent_Type type, | 87 PP_InputEvent_Type type, |
88 PP_TimeTicks time_stamp, | 88 PP_TimeTicks time_stamp, |
89 uint32_t modifiers, | 89 uint32_t modifiers, |
90 PP_InputEvent_MouseButton mouse_button, | 90 PP_InputEvent_MouseButton mouse_button, |
91 const PP_Point* mouse_position, | 91 const PP_Point* mouse_position, |
92 int32_t click_count) OVERRIDE; | 92 int32_t click_count) OVERRIDE; |
93 virtual PP_Resource CreateScrollbar(PP_Instance instance, | 93 virtual PP_Resource CreateScrollbar(PP_Resource scrollbar_group, |
94 PP_Bool vertical) OVERRIDE; | 94 PP_Bool vertical) OVERRIDE; |
| 95 virtual PP_Resource CreateScrollbarGroup(PP_Instance instance) OVERRIDE; |
95 virtual PP_Resource CreateSurface3D(PP_Instance instance, | 96 virtual PP_Resource CreateSurface3D(PP_Instance instance, |
96 PP_Config3D_Dev config, | 97 PP_Config3D_Dev config, |
97 const int32_t* attrib_list) OVERRIDE; | 98 const int32_t* attrib_list) OVERRIDE; |
98 virtual PP_Resource CreateTransport(PP_Instance instance, | 99 virtual PP_Resource CreateTransport(PP_Instance instance, |
99 const char* name, | 100 const char* name, |
100 const char* proto) OVERRIDE; | 101 const char* proto) OVERRIDE; |
101 virtual PP_Resource CreateURLLoader(PP_Instance instance) OVERRIDE; | 102 virtual PP_Resource CreateURLLoader(PP_Instance instance) OVERRIDE; |
102 virtual PP_Resource CreateURLRequestInfo(PP_Instance instance) OVERRIDE; | 103 virtual PP_Resource CreateURLRequestInfo(PP_Instance instance) OVERRIDE; |
103 virtual PP_Resource CreateVideoCapture(PP_Instance instance) OVERRIDE; | 104 virtual PP_Resource CreateVideoCapture(PP_Instance instance) OVERRIDE; |
104 virtual PP_Resource CreateVideoDecoder( | 105 virtual PP_Resource CreateVideoDecoder( |
(...skipping 13 matching lines...) Expand all Loading... |
118 private: | 119 private: |
119 PluginInstance* instance_; | 120 PluginInstance* instance_; |
120 | 121 |
121 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); | 122 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); |
122 }; | 123 }; |
123 | 124 |
124 } // namespace ppapi | 125 } // namespace ppapi |
125 } // namespace webkit | 126 } // namespace webkit |
126 | 127 |
127 #endif // WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ | 128 #endif // WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ |
OLD | NEW |