| 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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 PP_Instance instance, | 100 PP_Instance instance, |
| 101 const PP_NetAddress_IPv6* ipv6_addr) OVERRIDE; | 101 const PP_NetAddress_IPv6* ipv6_addr) OVERRIDE; |
| 102 virtual PP_Resource CreateNetAddressFromNetAddressPrivate( | 102 virtual PP_Resource CreateNetAddressFromNetAddressPrivate( |
| 103 PP_Instance instance, | 103 PP_Instance instance, |
| 104 const PP_NetAddress_Private& private_addr) OVERRIDE; | 104 const PP_NetAddress_Private& private_addr) OVERRIDE; |
| 105 virtual PP_Resource CreateTouchInputEvent( | 105 virtual PP_Resource CreateTouchInputEvent( |
| 106 PP_Instance instance, | 106 PP_Instance instance, |
| 107 PP_InputEvent_Type type, | 107 PP_InputEvent_Type type, |
| 108 PP_TimeTicks time_stamp, | 108 PP_TimeTicks time_stamp, |
| 109 uint32_t modifiers) OVERRIDE; | 109 uint32_t modifiers) OVERRIDE; |
| 110 virtual PP_Resource CreateNetworkMonitorPrivate( | 110 virtual PP_Resource CreateNetworkMonitor(PP_Instance instance) OVERRIDE; |
| 111 PP_Instance instance) OVERRIDE; | |
| 112 virtual PP_Resource CreatePlatformVerificationPrivate( | 111 virtual PP_Resource CreatePlatformVerificationPrivate( |
| 113 PP_Instance instance) OVERRIDE; | 112 PP_Instance instance) OVERRIDE; |
| 114 virtual PP_Resource CreateResourceArray(PP_Instance instance, | 113 virtual PP_Resource CreateResourceArray(PP_Instance instance, |
| 115 const PP_Resource elements[], | 114 const PP_Resource elements[], |
| 116 uint32_t size) OVERRIDE; | 115 uint32_t size) OVERRIDE; |
| 117 virtual PP_Resource CreateScrollbar(PP_Instance instance, | 116 virtual PP_Resource CreateScrollbar(PP_Instance instance, |
| 118 PP_Bool vertical) OVERRIDE; | 117 PP_Bool vertical) OVERRIDE; |
| 119 virtual PP_Resource CreateTalk(PP_Instance instance) OVERRIDE; | 118 virtual PP_Resource CreateTalk(PP_Instance instance) OVERRIDE; |
| 120 virtual PP_Resource CreateTCPServerSocketPrivate( | 119 virtual PP_Resource CreateTCPServerSocketPrivate( |
| 121 PP_Instance instance) OVERRIDE; | 120 PP_Instance instance) OVERRIDE; |
| (...skipping 20 matching lines...) Expand all Loading... |
| 142 virtual PP_Resource CreateX509CertificatePrivate( | 141 virtual PP_Resource CreateX509CertificatePrivate( |
| 143 PP_Instance instance) OVERRIDE; | 142 PP_Instance instance) OVERRIDE; |
| 144 | 143 |
| 145 private: | 144 private: |
| 146 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); | 145 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); |
| 147 }; | 146 }; |
| 148 | 147 |
| 149 } // namespace content | 148 } // namespace content |
| 150 | 149 |
| 151 #endif // CONTENT_RENDERER_PEPPER_RESOURCE_CREATION_IMPL_H_ | 150 #endif // CONTENT_RENDERER_PEPPER_RESOURCE_CREATION_IMPL_H_ |
| OLD | NEW |