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 CreateNetAddressFromIPv4Address( |
| 97 PP_Instance instance, |
| 98 const PP_NetAddress_IPv4_Dev* ipv4_addr) OVERRIDE; |
| 99 virtual PP_Resource CreateNetAddressFromIPv6Address( |
| 100 PP_Instance instance, |
| 101 const PP_NetAddress_IPv6_Dev* ipv6_addr) OVERRIDE; |
96 virtual PP_Resource CreateTouchInputEvent( | 102 virtual PP_Resource CreateTouchInputEvent( |
97 PP_Instance instance, | 103 PP_Instance instance, |
98 PP_InputEvent_Type type, | 104 PP_InputEvent_Type type, |
99 PP_TimeTicks time_stamp, | 105 PP_TimeTicks time_stamp, |
100 uint32_t modifiers) OVERRIDE; | 106 uint32_t modifiers) OVERRIDE; |
101 virtual PP_Resource CreateNetworkMonitor( | 107 virtual PP_Resource CreateNetworkMonitor( |
102 PP_Instance instance, | 108 PP_Instance instance, |
103 PPB_NetworkMonitor_Callback callback, | 109 PPB_NetworkMonitor_Callback callback, |
104 void* user_data) OVERRIDE; | 110 void* user_data) OVERRIDE; |
105 virtual PP_Resource CreateResourceArray(PP_Instance instance, | 111 virtual PP_Resource CreateResourceArray(PP_Instance instance, |
(...skipping 26 matching lines...) Expand all Loading... |
132 PP_Instance instance) OVERRIDE; | 138 PP_Instance instance) OVERRIDE; |
133 | 139 |
134 private: | 140 private: |
135 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); | 141 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); |
136 }; | 142 }; |
137 | 143 |
138 } // namespace ppapi | 144 } // namespace ppapi |
139 } // namespace webkit | 145 } // namespace webkit |
140 | 146 |
141 #endif // WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ | 147 #endif // WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ |
OLD | NEW |