| 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 PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ | 5 #ifndef PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ |
| 6 #define PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ | 6 #define PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 PPB_NetworkMonitor_Callback callback, | 119 PPB_NetworkMonitor_Callback callback, |
| 120 void* user_data) OVERRIDE; | 120 void* user_data) OVERRIDE; |
| 121 virtual PP_Resource CreateTCPServerSocketPrivate( | 121 virtual PP_Resource CreateTCPServerSocketPrivate( |
| 122 PP_Instance instance) OVERRIDE; | 122 PP_Instance instance) OVERRIDE; |
| 123 virtual PP_Resource CreateTCPSocketPrivate(PP_Instance instance) OVERRIDE; | 123 virtual PP_Resource CreateTCPSocketPrivate(PP_Instance instance) OVERRIDE; |
| 124 virtual PP_Resource CreateUDPSocketPrivate(PP_Instance instance) OVERRIDE; | 124 virtual PP_Resource CreateUDPSocketPrivate(PP_Instance instance) OVERRIDE; |
| 125 virtual PP_Resource CreateWebSocket(PP_Instance instance) OVERRIDE; | 125 virtual PP_Resource CreateWebSocket(PP_Instance instance) OVERRIDE; |
| 126 virtual PP_Resource CreateX509CertificatePrivate( | 126 virtual PP_Resource CreateX509CertificatePrivate( |
| 127 PP_Instance instance) OVERRIDE; | 127 PP_Instance instance) OVERRIDE; |
| 128 #if !defined(OS_NACL) | 128 #if !defined(OS_NACL) |
| 129 virtual PP_Resource CreateAudioInput0_1( | |
| 130 PP_Instance instance, | |
| 131 PP_Resource config_id, | |
| 132 PPB_AudioInput_Callback audio_input_callback, | |
| 133 void* user_data) OVERRIDE; | |
| 134 virtual PP_Resource CreateAudioInput(PP_Instance instance) OVERRIDE; | 129 virtual PP_Resource CreateAudioInput(PP_Instance instance) OVERRIDE; |
| 135 virtual PP_Resource CreateBroker(PP_Instance instance) OVERRIDE; | 130 virtual PP_Resource CreateBroker(PP_Instance instance) OVERRIDE; |
| 136 virtual PP_Resource CreateBrowserFont( | 131 virtual PP_Resource CreateBrowserFont( |
| 137 PP_Instance instance, | 132 PP_Instance instance, |
| 138 const PP_BrowserFont_Trusted_Description* description) OVERRIDE; | 133 const PP_BrowserFont_Trusted_Description* description) OVERRIDE; |
| 139 virtual PP_Resource CreateBuffer(PP_Instance instance, | 134 virtual PP_Resource CreateBuffer(PP_Instance instance, |
| 140 uint32_t size) OVERRIDE; | 135 uint32_t size) OVERRIDE; |
| 141 virtual PP_Resource CreateDirectoryReader(PP_Resource directory_ref) OVERRIDE; | 136 virtual PP_Resource CreateDirectoryReader(PP_Resource directory_ref) OVERRIDE; |
| 142 virtual PP_Resource CreateFileChooser( | 137 virtual PP_Resource CreateFileChooser( |
| 143 PP_Instance instance, | 138 PP_Instance instance, |
| (...skipping 23 matching lines...) Expand all Loading... |
| 167 | 162 |
| 168 private: | 163 private: |
| 169 Connection GetConnection(); | 164 Connection GetConnection(); |
| 170 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy); | 165 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy); |
| 171 }; | 166 }; |
| 172 | 167 |
| 173 } // namespace proxy | 168 } // namespace proxy |
| 174 } // namespace ppapi | 169 } // namespace ppapi |
| 175 | 170 |
| 176 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ | 171 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ |
| OLD | NEW |