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

Unified Diff: ppapi/proxy/ppb_video_decoder_proxy.h

Issue 7765011: Allow both Context3D and Graphics3D with the video decoder (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: context3d_id -> graphics_context Created 9 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ppapi/cpp/dev/video_decoder_dev.cc ('k') | ppapi/proxy/ppb_video_decoder_proxy.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/ppb_video_decoder_proxy.h
diff --git a/ppapi/proxy/ppb_video_decoder_proxy.h b/ppapi/proxy/ppb_video_decoder_proxy.h
index 2b51bc2f95f23d8f782876805b68e2c3a36d767f..56c21c5906c76c6e1cc07a841fdd7b4b6128d3fe 100644
--- a/ppapi/proxy/ppb_video_decoder_proxy.h
+++ b/ppapi/proxy/ppb_video_decoder_proxy.h
@@ -24,7 +24,8 @@ class PPB_VideoDecoder_Proxy : public InterfaceProxy {
// Creates a VideoDecoder object in the plugin process.
static PP_Resource CreateProxyResource(PP_Instance instance,
- PP_Resource context3d_id, const PP_VideoConfigElement* config);
+ PP_Resource graphics_context,
+ const PP_VideoConfigElement* config);
// InterfaceProxy implementation.
virtual bool OnMessageReceived(const IPC::Message& msg);
@@ -37,7 +38,7 @@ class PPB_VideoDecoder_Proxy : public InterfaceProxy {
// Message handlers in the renderer process to receive messages from the
// plugin process.
void OnMsgCreate(PP_Instance instance,
- const ppapi::HostResource& context3d_id,
+ const ppapi::HostResource& graphics_context,
const std::vector<PP_VideoConfigElement>& config,
ppapi::HostResource* result);
void OnMsgDecode(
« no previous file with comments | « ppapi/cpp/dev/video_decoder_dev.cc ('k') | ppapi/proxy/ppb_video_decoder_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698