| 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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 uint32_t modifiers) OVERRIDE; | 104 uint32_t modifiers) OVERRIDE; |
| 105 virtual PP_Resource CreateNetworkMonitorPrivate( | 105 virtual PP_Resource CreateNetworkMonitorPrivate( |
| 106 PP_Instance instance) OVERRIDE; | 106 PP_Instance instance) OVERRIDE; |
| 107 virtual PP_Resource CreatePlatformVerificationPrivate( | 107 virtual PP_Resource CreatePlatformVerificationPrivate( |
| 108 PP_Instance instance) OVERRIDE; | 108 PP_Instance instance) OVERRIDE; |
| 109 virtual PP_Resource CreateResourceArray(PP_Instance instance, | 109 virtual PP_Resource CreateResourceArray(PP_Instance instance, |
| 110 const PP_Resource elements[], | 110 const PP_Resource elements[], |
| 111 uint32_t size) OVERRIDE; | 111 uint32_t size) OVERRIDE; |
| 112 virtual PP_Resource CreateScrollbar(PP_Instance instance, | 112 virtual PP_Resource CreateScrollbar(PP_Instance instance, |
| 113 PP_Bool vertical) OVERRIDE; | 113 PP_Bool vertical) OVERRIDE; |
| 114 virtual PP_Resource CreateOutputProtectionPrivate( |
| 115 PP_Instance instance) OVERRIDE; |
| 114 virtual PP_Resource CreateTalk(PP_Instance instance) OVERRIDE; | 116 virtual PP_Resource CreateTalk(PP_Instance instance) OVERRIDE; |
| 115 virtual PP_Resource CreateTCPServerSocketPrivate( | 117 virtual PP_Resource CreateTCPServerSocketPrivate( |
| 116 PP_Instance instance) OVERRIDE; | 118 PP_Instance instance) OVERRIDE; |
| 117 virtual PP_Resource CreateTCPSocket(PP_Instance instance) OVERRIDE; | 119 virtual PP_Resource CreateTCPSocket(PP_Instance instance) OVERRIDE; |
| 118 virtual PP_Resource CreateTCPSocketPrivate(PP_Instance instance) OVERRIDE; | 120 virtual PP_Resource CreateTCPSocketPrivate(PP_Instance instance) OVERRIDE; |
| 119 virtual PP_Resource CreateUDPSocket(PP_Instance instance) OVERRIDE; | 121 virtual PP_Resource CreateUDPSocket(PP_Instance instance) OVERRIDE; |
| 120 virtual PP_Resource CreateUDPSocketPrivate(PP_Instance instance) OVERRIDE; | 122 virtual PP_Resource CreateUDPSocketPrivate(PP_Instance instance) OVERRIDE; |
| 121 virtual PP_Resource CreateVideoCapture(PP_Instance instance) OVERRIDE; | 123 virtual PP_Resource CreateVideoCapture(PP_Instance instance) OVERRIDE; |
| 122 virtual PP_Resource CreateVideoDecoder( | 124 virtual PP_Resource CreateVideoDecoder( |
| 123 PP_Instance instance, | 125 PP_Instance instance, |
| (...skipping 13 matching lines...) Expand all Loading... |
| 137 virtual PP_Resource CreateX509CertificatePrivate( | 139 virtual PP_Resource CreateX509CertificatePrivate( |
| 138 PP_Instance instance) OVERRIDE; | 140 PP_Instance instance) OVERRIDE; |
| 139 | 141 |
| 140 private: | 142 private: |
| 141 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); | 143 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); |
| 142 }; | 144 }; |
| 143 | 145 |
| 144 } // namespace content | 146 } // namespace content |
| 145 | 147 |
| 146 #endif // CONTENT_RENDERER_PEPPER_RESOURCE_CREATION_IMPL_H_ | 148 #endif // CONTENT_RENDERER_PEPPER_RESOURCE_CREATION_IMPL_H_ |
| OLD | NEW |