| 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 PP_Var character_text) OVERRIDE; | 86 PP_Var character_text) OVERRIDE; |
| 87 virtual PP_Resource CreateMouseInputEvent( | 87 virtual PP_Resource CreateMouseInputEvent( |
| 88 PP_Instance instance, | 88 PP_Instance instance, |
| 89 PP_InputEvent_Type type, | 89 PP_InputEvent_Type type, |
| 90 PP_TimeTicks time_stamp, | 90 PP_TimeTicks time_stamp, |
| 91 uint32_t modifiers, | 91 uint32_t modifiers, |
| 92 PP_InputEvent_MouseButton mouse_button, | 92 PP_InputEvent_MouseButton mouse_button, |
| 93 const PP_Point* mouse_position, | 93 const PP_Point* mouse_position, |
| 94 int32_t click_count, | 94 int32_t click_count, |
| 95 const PP_Point* mouse_movement) OVERRIDE; | 95 const PP_Point* mouse_movement) OVERRIDE; |
| 96 virtual PP_Resource CreateTouchInputEvent( |
| 97 PP_Instance instance, |
| 98 PP_InputEvent_Type type, |
| 99 PP_TimeTicks time_stamp, |
| 100 uint32_t modifiers) OVERRIDE; |
| 96 virtual PP_Resource CreateNetworkMonitor( | 101 virtual PP_Resource CreateNetworkMonitor( |
| 97 PP_Instance instance, | 102 PP_Instance instance, |
| 98 PPB_NetworkMonitor_Callback callback, | 103 PPB_NetworkMonitor_Callback callback, |
| 99 void* user_data) OVERRIDE; | 104 void* user_data) OVERRIDE; |
| 100 virtual PP_Resource CreateResourceArray(PP_Instance instance, | 105 virtual PP_Resource CreateResourceArray(PP_Instance instance, |
| 101 const PP_Resource elements[], | 106 const PP_Resource elements[], |
| 102 uint32_t size) OVERRIDE; | 107 uint32_t size) OVERRIDE; |
| 103 virtual PP_Resource CreateScrollbar(PP_Instance instance, | 108 virtual PP_Resource CreateScrollbar(PP_Instance instance, |
| 104 PP_Bool vertical) OVERRIDE; | 109 PP_Bool vertical) OVERRIDE; |
| 105 virtual PP_Resource CreateTalk(PP_Instance instance) OVERRIDE; | 110 virtual PP_Resource CreateTalk(PP_Instance instance) OVERRIDE; |
| (...skipping 25 matching lines...) Expand all Loading... |
| 131 PP_Instance instance) OVERRIDE; | 136 PP_Instance instance) OVERRIDE; |
| 132 | 137 |
| 133 private: | 138 private: |
| 134 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); | 139 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); |
| 135 }; | 140 }; |
| 136 | 141 |
| 137 } // namespace ppapi | 142 } // namespace ppapi |
| 138 } // namespace webkit | 143 } // namespace webkit |
| 139 | 144 |
| 140 #endif // WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ | 145 #endif // WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ |
| OLD | NEW |