Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(148)

Side by Side Diff: ppapi/proxy/resource_creation_proxy.h

Issue 2755613002: Support audio output device enumeration and selection in PPAPI (Closed)
Patch Set: Fix format, Rebase Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ppapi/proxy/ppapi_messages.h ('k') | ppapi/proxy/resource_creation_proxy.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 <stdint.h> 8 #include <stdint.h>
9 9
10 #include <string> 10 #include <string>
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 PP_Resource CreateUDPSocketPrivate(PP_Instance instance) override; 156 PP_Resource CreateUDPSocketPrivate(PP_Instance instance) override;
157 PP_Resource CreateVideoDecoder(PP_Instance instance) override; 157 PP_Resource CreateVideoDecoder(PP_Instance instance) override;
158 PP_Resource CreateVideoDestination(PP_Instance instance) override; 158 PP_Resource CreateVideoDestination(PP_Instance instance) override;
159 PP_Resource CreateVideoEncoder(PP_Instance instance) override; 159 PP_Resource CreateVideoEncoder(PP_Instance instance) override;
160 PP_Resource CreateVideoSource(PP_Instance instance) override; 160 PP_Resource CreateVideoSource(PP_Instance instance) override;
161 PP_Resource CreateVpnProvider(PP_Instance instance) override; 161 PP_Resource CreateVpnProvider(PP_Instance instance) override;
162 PP_Resource CreateWebSocket(PP_Instance instance) override; 162 PP_Resource CreateWebSocket(PP_Instance instance) override;
163 PP_Resource CreateX509CertificatePrivate(PP_Instance instance) override; 163 PP_Resource CreateX509CertificatePrivate(PP_Instance instance) override;
164 #if !defined(OS_NACL) 164 #if !defined(OS_NACL)
165 PP_Resource CreateAudioInput(PP_Instance instance) override; 165 PP_Resource CreateAudioInput(PP_Instance instance) override;
166 PP_Resource CreateAudioOutput(PP_Instance instance) override;
166 PP_Resource CreateBroker(PP_Instance instance) override; 167 PP_Resource CreateBroker(PP_Instance instance) override;
167 PP_Resource CreateBrowserFont( 168 PP_Resource CreateBrowserFont(
168 PP_Instance instance, 169 PP_Instance instance,
169 const PP_BrowserFont_Trusted_Description* description) override; 170 const PP_BrowserFont_Trusted_Description* description) override;
170 PP_Resource CreateBuffer(PP_Instance instance, uint32_t size) override; 171 PP_Resource CreateBuffer(PP_Instance instance, uint32_t size) override;
171 PP_Resource CreateFlashDRM(PP_Instance instance) override; 172 PP_Resource CreateFlashDRM(PP_Instance instance) override;
172 PP_Resource CreateFlashFontFile( 173 PP_Resource CreateFlashFontFile(
173 PP_Instance instance, 174 PP_Instance instance,
174 const PP_BrowserFont_Trusted_Description* description, 175 const PP_BrowserFont_Trusted_Description* description,
175 PP_PrivateFontCharset charset) override; 176 PP_PrivateFontCharset charset) override;
(...skipping 13 matching lines...) Expand all
189 190
190 private: 191 private:
191 Connection GetConnection(); 192 Connection GetConnection();
192 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy); 193 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy);
193 }; 194 };
194 195
195 } // namespace proxy 196 } // namespace proxy
196 } // namespace ppapi 197 } // namespace ppapi
197 198
198 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ 199 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_
OLDNEW
« no previous file with comments | « ppapi/proxy/ppapi_messages.h ('k') | ppapi/proxy/resource_creation_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698