| 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 CONTENT_RENDERER_PEPPER_RESOURCE_CREATION_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_PEPPER_RESOURCE_CREATION_IMPL_H_ |
| 6 #define CONTENT_RENDERER_PEPPER_RESOURCE_CREATION_IMPL_H_ | 6 #define CONTENT_RENDERER_PEPPER_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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 PP_Instance instance, | 96 PP_Instance instance, |
| 97 const PP_NetAddress_IPv6* ipv6_addr) OVERRIDE; | 97 const PP_NetAddress_IPv6* ipv6_addr) OVERRIDE; |
| 98 virtual PP_Resource CreateNetAddressFromNetAddressPrivate( | 98 virtual PP_Resource CreateNetAddressFromNetAddressPrivate( |
| 99 PP_Instance instance, | 99 PP_Instance instance, |
| 100 const PP_NetAddress_Private& private_addr) OVERRIDE; | 100 const PP_NetAddress_Private& private_addr) OVERRIDE; |
| 101 virtual PP_Resource CreateTouchInputEvent( | 101 virtual PP_Resource CreateTouchInputEvent( |
| 102 PP_Instance instance, | 102 PP_Instance instance, |
| 103 PP_InputEvent_Type type, | 103 PP_InputEvent_Type type, |
| 104 PP_TimeTicks time_stamp, | 104 PP_TimeTicks time_stamp, |
| 105 uint32_t modifiers) OVERRIDE; | 105 uint32_t modifiers) OVERRIDE; |
| 106 virtual PP_Resource CreateNetworkMonitor( | 106 virtual PP_Resource CreateNetworkMonitor(PP_Instance instance) OVERRIDE; |
| 107 PP_Instance instance, | |
| 108 PPB_NetworkMonitor_Callback callback, | |
| 109 void* user_data) OVERRIDE; | |
| 110 virtual PP_Resource CreateResourceArray(PP_Instance instance, | 107 virtual PP_Resource CreateResourceArray(PP_Instance instance, |
| 111 const PP_Resource elements[], | 108 const PP_Resource elements[], |
| 112 uint32_t size) OVERRIDE; | 109 uint32_t size) OVERRIDE; |
| 113 virtual PP_Resource CreateScrollbar(PP_Instance instance, | 110 virtual PP_Resource CreateScrollbar(PP_Instance instance, |
| 114 PP_Bool vertical) OVERRIDE; | 111 PP_Bool vertical) OVERRIDE; |
| 115 virtual PP_Resource CreateTalk(PP_Instance instance) OVERRIDE; | 112 virtual PP_Resource CreateTalk(PP_Instance instance) OVERRIDE; |
| 116 virtual PP_Resource CreateTCPServerSocketPrivate( | 113 virtual PP_Resource CreateTCPServerSocketPrivate( |
| 117 PP_Instance instance) OVERRIDE; | 114 PP_Instance instance) OVERRIDE; |
| 118 virtual PP_Resource CreateTCPSocket(PP_Instance instance) OVERRIDE; | 115 virtual PP_Resource CreateTCPSocket(PP_Instance instance) OVERRIDE; |
| 119 virtual PP_Resource CreateTCPSocketPrivate(PP_Instance instance) OVERRIDE; | 116 virtual PP_Resource CreateTCPSocketPrivate(PP_Instance instance) OVERRIDE; |
| (...skipping 18 matching lines...) Expand all Loading... |
| 138 virtual PP_Resource CreateX509CertificatePrivate( | 135 virtual PP_Resource CreateX509CertificatePrivate( |
| 139 PP_Instance instance) OVERRIDE; | 136 PP_Instance instance) OVERRIDE; |
| 140 | 137 |
| 141 private: | 138 private: |
| 142 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); | 139 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); |
| 143 }; | 140 }; |
| 144 | 141 |
| 145 } // namespace content | 142 } // namespace content |
| 146 | 143 |
| 147 #endif // CONTENT_RENDERER_PEPPER_RESOURCE_CREATION_IMPL_H_ | 144 #endif // CONTENT_RENDERER_PEPPER_RESOURCE_CREATION_IMPL_H_ |
| OLD | NEW |