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

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

Issue 365153003: Pepper: add PPB_VideoEncoder interface (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update API to prevent the user from dealing with buffer management Created 6 years, 5 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/interface_list.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 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 virtual PP_Resource CreatePrinting(PP_Instance) OVERRIDE; 147 virtual PP_Resource CreatePrinting(PP_Instance) OVERRIDE;
148 virtual PP_Resource CreateTCPServerSocketPrivate( 148 virtual PP_Resource CreateTCPServerSocketPrivate(
149 PP_Instance instance) OVERRIDE; 149 PP_Instance instance) OVERRIDE;
150 virtual PP_Resource CreateTCPSocket1_0(PP_Instance instance) OVERRIDE; 150 virtual PP_Resource CreateTCPSocket1_0(PP_Instance instance) OVERRIDE;
151 virtual PP_Resource CreateTCPSocket(PP_Instance instance) OVERRIDE; 151 virtual PP_Resource CreateTCPSocket(PP_Instance instance) OVERRIDE;
152 virtual PP_Resource CreateTCPSocketPrivate(PP_Instance instance) OVERRIDE; 152 virtual PP_Resource CreateTCPSocketPrivate(PP_Instance instance) OVERRIDE;
153 virtual PP_Resource CreateUDPSocket(PP_Instance instance) OVERRIDE; 153 virtual PP_Resource CreateUDPSocket(PP_Instance instance) OVERRIDE;
154 virtual PP_Resource CreateUDPSocketPrivate(PP_Instance instance) OVERRIDE; 154 virtual PP_Resource CreateUDPSocketPrivate(PP_Instance instance) OVERRIDE;
155 virtual PP_Resource CreateVideoDecoder(PP_Instance instance) OVERRIDE; 155 virtual PP_Resource CreateVideoDecoder(PP_Instance instance) OVERRIDE;
156 virtual PP_Resource CreateVideoDestination(PP_Instance instance) OVERRIDE; 156 virtual PP_Resource CreateVideoDestination(PP_Instance instance) OVERRIDE;
157 virtual PP_Resource CreateVideoEncoder(PP_Instance instance) OVERRIDE;
157 virtual PP_Resource CreateVideoSource(PP_Instance instance) OVERRIDE; 158 virtual PP_Resource CreateVideoSource(PP_Instance instance) OVERRIDE;
158 virtual PP_Resource CreateWebSocket(PP_Instance instance) OVERRIDE; 159 virtual PP_Resource CreateWebSocket(PP_Instance instance) OVERRIDE;
159 virtual PP_Resource CreateX509CertificatePrivate( 160 virtual PP_Resource CreateX509CertificatePrivate(
160 PP_Instance instance) OVERRIDE; 161 PP_Instance instance) OVERRIDE;
161 #if !defined(OS_NACL) 162 #if !defined(OS_NACL)
162 virtual PP_Resource CreateAudioInput(PP_Instance instance) OVERRIDE; 163 virtual PP_Resource CreateAudioInput(PP_Instance instance) OVERRIDE;
163 virtual PP_Resource CreateBroker(PP_Instance instance) OVERRIDE; 164 virtual PP_Resource CreateBroker(PP_Instance instance) OVERRIDE;
164 virtual PP_Resource CreateBrowserFont( 165 virtual PP_Resource CreateBrowserFont(
165 PP_Instance instance, 166 PP_Instance instance,
166 const PP_BrowserFont_Trusted_Description* description) OVERRIDE; 167 const PP_BrowserFont_Trusted_Description* description) OVERRIDE;
(...skipping 24 matching lines...) Expand all
191 192
192 private: 193 private:
193 Connection GetConnection(); 194 Connection GetConnection();
194 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy); 195 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy);
195 }; 196 };
196 197
197 } // namespace proxy 198 } // namespace proxy
198 } // namespace ppapi 199 } // namespace ppapi
199 200
200 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ 201 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_
OLDNEW
« no previous file with comments | « ppapi/proxy/interface_list.cc ('k') | ppapi/proxy/resource_creation_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698