| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 MOJO_EXAMPLES_PEPPER_CONTAINER_APP_RESOURCE_CREATION_IMPL_H_ | 5 #ifndef MOJO_EXAMPLES_PEPPER_CONTAINER_APP_RESOURCE_CREATION_IMPL_H_ |
| 6 #define MOJO_EXAMPLES_PEPPER_CONTAINER_APP_RESOURCE_CREATION_IMPL_H_ | 6 #define MOJO_EXAMPLES_PEPPER_CONTAINER_APP_RESOURCE_CREATION_IMPL_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/macros.h" | 9 #include "base/macros.h" |
| 10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 virtual PP_Resource CreateOutputProtectionPrivate( | 126 virtual PP_Resource CreateOutputProtectionPrivate( |
| 127 PP_Instance instance) OVERRIDE; | 127 PP_Instance instance) OVERRIDE; |
| 128 virtual PP_Resource CreatePrinting(PP_Instance) OVERRIDE; | 128 virtual PP_Resource CreatePrinting(PP_Instance) OVERRIDE; |
| 129 virtual PP_Resource CreateTCPServerSocketPrivate( | 129 virtual PP_Resource CreateTCPServerSocketPrivate( |
| 130 PP_Instance instance) OVERRIDE; | 130 PP_Instance instance) OVERRIDE; |
| 131 virtual PP_Resource CreateTCPSocket1_0(PP_Instance instance) OVERRIDE; | 131 virtual PP_Resource CreateTCPSocket1_0(PP_Instance instance) OVERRIDE; |
| 132 virtual PP_Resource CreateTCPSocket(PP_Instance instance) OVERRIDE; | 132 virtual PP_Resource CreateTCPSocket(PP_Instance instance) OVERRIDE; |
| 133 virtual PP_Resource CreateTCPSocketPrivate(PP_Instance instance) OVERRIDE; | 133 virtual PP_Resource CreateTCPSocketPrivate(PP_Instance instance) OVERRIDE; |
| 134 virtual PP_Resource CreateUDPSocket(PP_Instance instance) OVERRIDE; | 134 virtual PP_Resource CreateUDPSocket(PP_Instance instance) OVERRIDE; |
| 135 virtual PP_Resource CreateUDPSocketPrivate(PP_Instance instance) OVERRIDE; | 135 virtual PP_Resource CreateUDPSocketPrivate(PP_Instance instance) OVERRIDE; |
| 136 virtual PP_Resource CreateVideoDecoder(PP_Instance instance) OVERRIDE; |
| 136 virtual PP_Resource CreateVideoDestination(PP_Instance instance) OVERRIDE; | 137 virtual PP_Resource CreateVideoDestination(PP_Instance instance) OVERRIDE; |
| 137 virtual PP_Resource CreateVideoSource(PP_Instance instance) OVERRIDE; | 138 virtual PP_Resource CreateVideoSource(PP_Instance instance) OVERRIDE; |
| 138 virtual PP_Resource CreateWebSocket(PP_Instance instance) OVERRIDE; | 139 virtual PP_Resource CreateWebSocket(PP_Instance instance) OVERRIDE; |
| 139 virtual PP_Resource CreateX509CertificatePrivate( | 140 virtual PP_Resource CreateX509CertificatePrivate( |
| 140 PP_Instance instance) OVERRIDE; | 141 PP_Instance instance) OVERRIDE; |
| 141 #if !defined(OS_NACL) | 142 #if !defined(OS_NACL) |
| 142 virtual PP_Resource CreateAudioInput(PP_Instance instance) OVERRIDE; | 143 virtual PP_Resource CreateAudioInput(PP_Instance instance) OVERRIDE; |
| 143 virtual PP_Resource CreateBroker(PP_Instance instance) OVERRIDE; | 144 virtual PP_Resource CreateBroker(PP_Instance instance) OVERRIDE; |
| 144 virtual PP_Resource CreateBrowserFont( | 145 virtual PP_Resource CreateBrowserFont( |
| 145 PP_Instance instance, | 146 PP_Instance instance, |
| (...skipping 21 matching lines...) Expand all Loading... |
| 167 #endif // !defined(OS_NACL) | 168 #endif // !defined(OS_NACL) |
| 168 | 169 |
| 169 private: | 170 private: |
| 170 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); | 171 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); |
| 171 }; | 172 }; |
| 172 | 173 |
| 173 } // namespace examples | 174 } // namespace examples |
| 174 } // namespace mojo | 175 } // namespace mojo |
| 175 | 176 |
| 176 #endif // MOJO_EXAMPLES_PEPPER_CONTAINER_APP_RESOURCE_CREATION_IMPL_H_ | 177 #endif // MOJO_EXAMPLES_PEPPER_CONTAINER_APP_RESOURCE_CREATION_IMPL_H_ |
| OLD | NEW |