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 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
140 const PP_NetAddress_Private& private_addr) OVERRIDE; | 140 const PP_NetAddress_Private& private_addr) OVERRIDE; |
141 virtual PP_Resource CreateNetworkMonitor( | 141 virtual PP_Resource CreateNetworkMonitor( |
142 PP_Instance instance, | 142 PP_Instance instance, |
143 PPB_NetworkMonitor_Callback callback, | 143 PPB_NetworkMonitor_Callback callback, |
144 void* user_data) OVERRIDE; | 144 void* user_data) OVERRIDE; |
145 virtual PP_Resource CreatePrinting(PP_Instance) OVERRIDE; | 145 virtual PP_Resource CreatePrinting(PP_Instance) OVERRIDE; |
146 virtual PP_Resource CreateTCPServerSocketPrivate( | 146 virtual PP_Resource CreateTCPServerSocketPrivate( |
147 PP_Instance instance) OVERRIDE; | 147 PP_Instance instance) OVERRIDE; |
148 virtual PP_Resource CreateTCPSocket(PP_Instance instance) OVERRIDE; | 148 virtual PP_Resource CreateTCPSocket(PP_Instance instance) OVERRIDE; |
149 virtual PP_Resource CreateTCPSocketPrivate(PP_Instance instance) OVERRIDE; | 149 virtual PP_Resource CreateTCPSocketPrivate(PP_Instance instance) OVERRIDE; |
| 150 virtual PP_Resource CreateUDPSocket(PP_Instance instance) OVERRIDE; |
150 virtual PP_Resource CreateUDPSocketPrivate(PP_Instance instance) OVERRIDE; | 151 virtual PP_Resource CreateUDPSocketPrivate(PP_Instance instance) OVERRIDE; |
151 virtual PP_Resource CreateWebSocket(PP_Instance instance) OVERRIDE; | 152 virtual PP_Resource CreateWebSocket(PP_Instance instance) OVERRIDE; |
152 virtual PP_Resource CreateX509CertificatePrivate( | 153 virtual PP_Resource CreateX509CertificatePrivate( |
153 PP_Instance instance) OVERRIDE; | 154 PP_Instance instance) OVERRIDE; |
154 #if !defined(OS_NACL) | 155 #if !defined(OS_NACL) |
155 virtual PP_Resource CreateAudioInput(PP_Instance instance) OVERRIDE; | 156 virtual PP_Resource CreateAudioInput(PP_Instance instance) OVERRIDE; |
156 virtual PP_Resource CreateBroker(PP_Instance instance) OVERRIDE; | 157 virtual PP_Resource CreateBroker(PP_Instance instance) OVERRIDE; |
157 virtual PP_Resource CreateBrowserFont( | 158 virtual PP_Resource CreateBrowserFont( |
158 PP_Instance instance, | 159 PP_Instance instance, |
159 const PP_BrowserFont_Trusted_Description* description) OVERRIDE; | 160 const PP_BrowserFont_Trusted_Description* description) OVERRIDE; |
(...skipping 24 matching lines...) Expand all Loading... |
184 | 185 |
185 private: | 186 private: |
186 Connection GetConnection(); | 187 Connection GetConnection(); |
187 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy); | 188 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy); |
188 }; | 189 }; |
189 | 190 |
190 } // namespace proxy | 191 } // namespace proxy |
191 } // namespace ppapi | 192 } // namespace ppapi |
192 | 193 |
193 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ | 194 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ |
OLD | NEW |