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