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

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

Issue 11366038: Rewrite PPB_AudioInput_Dev to use the new-style host/resource. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « ppapi/proxy/proxy_channel.cc ('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 <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
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
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_
OLDNEW
« no previous file with comments | « ppapi/proxy/proxy_channel.cc ('k') | ppapi/proxy/resource_creation_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698