| 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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 PP_Instance instance, | 102 PP_Instance instance, |
| 103 const PP_NetAddress_IPv4* ipv4_addr) override; | 103 const PP_NetAddress_IPv4* ipv4_addr) override; |
| 104 PP_Resource CreateNetAddressFromIPv6Address( | 104 PP_Resource CreateNetAddressFromIPv6Address( |
| 105 PP_Instance instance, | 105 PP_Instance instance, |
| 106 const PP_NetAddress_IPv6* ipv6_addr) override; | 106 const PP_NetAddress_IPv6* ipv6_addr) override; |
| 107 PP_Resource CreateNetAddressFromNetAddressPrivate( | 107 PP_Resource CreateNetAddressFromNetAddressPrivate( |
| 108 PP_Instance instance, | 108 PP_Instance instance, |
| 109 const PP_NetAddress_Private& private_addr) override; | 109 const PP_NetAddress_Private& private_addr) override; |
| 110 PP_Resource CreateNetworkMonitor(PP_Instance instance) override; | 110 PP_Resource CreateNetworkMonitor(PP_Instance instance) override; |
| 111 PP_Resource CreatePlatformVerificationPrivate(PP_Instance instance) override; | 111 PP_Resource CreatePlatformVerificationPrivate(PP_Instance instance) override; |
| 112 PP_Resource CreateScrollbar(PP_Instance instance, PP_Bool vertical) override; | |
| 113 PP_Resource CreateOutputProtectionPrivate(PP_Instance instance) override; | 112 PP_Resource CreateOutputProtectionPrivate(PP_Instance instance) override; |
| 114 PP_Resource CreateTCPServerSocketPrivate(PP_Instance instance) override; | 113 PP_Resource CreateTCPServerSocketPrivate(PP_Instance instance) override; |
| 115 PP_Resource CreateTCPSocket1_0(PP_Instance instance) override; | 114 PP_Resource CreateTCPSocket1_0(PP_Instance instance) override; |
| 116 PP_Resource CreateTCPSocket(PP_Instance instance) override; | 115 PP_Resource CreateTCPSocket(PP_Instance instance) override; |
| 117 PP_Resource CreateTCPSocketPrivate(PP_Instance instance) override; | 116 PP_Resource CreateTCPSocketPrivate(PP_Instance instance) override; |
| 118 PP_Resource CreateTouchInputEvent(PP_Instance instance, | 117 PP_Resource CreateTouchInputEvent(PP_Instance instance, |
| 119 PP_InputEvent_Type type, | 118 PP_InputEvent_Type type, |
| 120 PP_TimeTicks time_stamp, | 119 PP_TimeTicks time_stamp, |
| 121 uint32_t modifiers) override; | 120 uint32_t modifiers) override; |
| 122 PP_Resource CreateUDPSocket(PP_Instance instance) override; | 121 PP_Resource CreateUDPSocket(PP_Instance instance) override; |
| (...skipping 14 matching lines...) Expand all Loading... |
| 137 PP_Bool scroll_by_page) override; | 136 PP_Bool scroll_by_page) override; |
| 138 PP_Resource CreateX509CertificatePrivate(PP_Instance instance) override; | 137 PP_Resource CreateX509CertificatePrivate(PP_Instance instance) override; |
| 139 | 138 |
| 140 private: | 139 private: |
| 141 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); | 140 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); |
| 142 }; | 141 }; |
| 143 | 142 |
| 144 } // namespace content | 143 } // namespace content |
| 145 | 144 |
| 146 #endif // CONTENT_RENDERER_PEPPER_RESOURCE_CREATION_IMPL_H_ | 145 #endif // CONTENT_RENDERER_PEPPER_RESOURCE_CREATION_IMPL_H_ |
| OLD | NEW |