| 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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 PP_Instance instance, | 89 PP_Instance instance, |
| 90 PP_InputEvent_Type type, | 90 PP_InputEvent_Type type, |
| 91 PP_TimeTicks time_stamp, | 91 PP_TimeTicks time_stamp, |
| 92 uint32_t modifiers, | 92 uint32_t modifiers, |
| 93 PP_InputEvent_MouseButton mouse_button, | 93 PP_InputEvent_MouseButton mouse_button, |
| 94 const PP_Point* mouse_position, | 94 const PP_Point* mouse_position, |
| 95 int32_t click_count, | 95 int32_t click_count, |
| 96 const PP_Point* mouse_movement) OVERRIDE; | 96 const PP_Point* mouse_movement) OVERRIDE; |
| 97 virtual PP_Resource CreateNetAddressFromIPv4Address( | 97 virtual PP_Resource CreateNetAddressFromIPv4Address( |
| 98 PP_Instance instance, | 98 PP_Instance instance, |
| 99 const PP_NetAddress_IPv4_Dev* ipv4_addr) OVERRIDE; | 99 const PP_NetAddress_IPv4* ipv4_addr) OVERRIDE; |
| 100 virtual PP_Resource CreateNetAddressFromIPv6Address( | 100 virtual PP_Resource CreateNetAddressFromIPv6Address( |
| 101 PP_Instance instance, | 101 PP_Instance instance, |
| 102 const PP_NetAddress_IPv6_Dev* ipv6_addr) OVERRIDE; | 102 const PP_NetAddress_IPv6* ipv6_addr) OVERRIDE; |
| 103 virtual PP_Resource CreateNetAddressFromNetAddressPrivate( | 103 virtual PP_Resource CreateNetAddressFromNetAddressPrivate( |
| 104 PP_Instance instance, | 104 PP_Instance instance, |
| 105 const PP_NetAddress_Private& private_addr) OVERRIDE; | 105 const PP_NetAddress_Private& private_addr) OVERRIDE; |
| 106 virtual PP_Resource CreateTouchInputEvent( | 106 virtual PP_Resource CreateTouchInputEvent( |
| 107 PP_Instance instance, | 107 PP_Instance instance, |
| 108 PP_InputEvent_Type type, | 108 PP_InputEvent_Type type, |
| 109 PP_TimeTicks time_stamp, | 109 PP_TimeTicks time_stamp, |
| 110 uint32_t modifiers) OVERRIDE; | 110 uint32_t modifiers) OVERRIDE; |
| 111 virtual PP_Resource CreateNetworkMonitor( | 111 virtual PP_Resource CreateNetworkMonitor( |
| 112 PP_Instance instance, | 112 PP_Instance instance, |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 PP_Instance instance) OVERRIDE; | 144 PP_Instance instance) OVERRIDE; |
| 145 | 145 |
| 146 private: | 146 private: |
| 147 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); | 147 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); |
| 148 }; | 148 }; |
| 149 | 149 |
| 150 } // namespace ppapi | 150 } // namespace ppapi |
| 151 } // namespace webkit | 151 } // namespace webkit |
| 152 | 152 |
| 153 #endif // WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ | 153 #endif // WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ |
| OLD | NEW |