| 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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 PP_Instance instance, | 91 PP_Instance instance, |
| 92 const PP_NetAddress_IPv6* ipv6_addr) OVERRIDE; | 92 const PP_NetAddress_IPv6* ipv6_addr) OVERRIDE; |
| 93 virtual PP_Resource CreateNetAddressFromNetAddressPrivate( | 93 virtual PP_Resource CreateNetAddressFromNetAddressPrivate( |
| 94 PP_Instance instance, | 94 PP_Instance instance, |
| 95 const PP_NetAddress_Private& private_addr) OVERRIDE; | 95 const PP_NetAddress_Private& private_addr) OVERRIDE; |
| 96 virtual PP_Resource CreateTouchInputEvent( | 96 virtual PP_Resource CreateTouchInputEvent( |
| 97 PP_Instance instance, | 97 PP_Instance instance, |
| 98 PP_InputEvent_Type type, | 98 PP_InputEvent_Type type, |
| 99 PP_TimeTicks time_stamp, | 99 PP_TimeTicks time_stamp, |
| 100 uint32_t modifiers) OVERRIDE; | 100 uint32_t modifiers) OVERRIDE; |
| 101 virtual PP_Resource CreateNetworkMonitor( | 101 virtual PP_Resource CreateNetworkMonitorPrivate( |
| 102 PP_Instance instance, | 102 PP_Instance instance) OVERRIDE; |
| 103 PPB_NetworkMonitor_Callback callback, | |
| 104 void* user_data) OVERRIDE; | |
| 105 virtual PP_Resource CreateResourceArray(PP_Instance instance, | 103 virtual PP_Resource CreateResourceArray(PP_Instance instance, |
| 106 const PP_Resource elements[], | 104 const PP_Resource elements[], |
| 107 uint32_t size) OVERRIDE; | 105 uint32_t size) OVERRIDE; |
| 108 virtual PP_Resource CreateScrollbar(PP_Instance instance, | 106 virtual PP_Resource CreateScrollbar(PP_Instance instance, |
| 109 PP_Bool vertical) OVERRIDE; | 107 PP_Bool vertical) OVERRIDE; |
| 110 virtual PP_Resource CreateTalk(PP_Instance instance) OVERRIDE; | 108 virtual PP_Resource CreateTalk(PP_Instance instance) OVERRIDE; |
| 111 virtual PP_Resource CreateTCPServerSocketPrivate( | 109 virtual PP_Resource CreateTCPServerSocketPrivate( |
| 112 PP_Instance instance) OVERRIDE; | 110 PP_Instance instance) OVERRIDE; |
| 113 virtual PP_Resource CreateTCPSocket(PP_Instance instance) OVERRIDE; | 111 virtual PP_Resource CreateTCPSocket(PP_Instance instance) OVERRIDE; |
| 114 virtual PP_Resource CreateTCPSocketPrivate(PP_Instance instance) OVERRIDE; | 112 virtual PP_Resource CreateTCPSocketPrivate(PP_Instance instance) OVERRIDE; |
| (...skipping 18 matching lines...) Expand all Loading... |
| 133 virtual PP_Resource CreateX509CertificatePrivate( | 131 virtual PP_Resource CreateX509CertificatePrivate( |
| 134 PP_Instance instance) OVERRIDE; | 132 PP_Instance instance) OVERRIDE; |
| 135 | 133 |
| 136 private: | 134 private: |
| 137 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); | 135 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); |
| 138 }; | 136 }; |
| 139 | 137 |
| 140 } // namespace content | 138 } // namespace content |
| 141 | 139 |
| 142 #endif // CONTENT_RENDERER_PEPPER_RESOURCE_CREATION_IMPL_H_ | 140 #endif // CONTENT_RENDERER_PEPPER_RESOURCE_CREATION_IMPL_H_ |
| OLD | NEW |