Index: ppapi/thunk/ppb_video_decoder_thunk.cc |
diff --git a/ppapi/thunk/ppb_video_decoder_thunk.cc b/ppapi/thunk/ppb_video_decoder_thunk.cc |
index 40b837b134059caece8cdaca1d4f8c49d680aec2..e1962cd90c948bb0a1e428891bc6a35ff779d0ee 100644 |
--- a/ppapi/thunk/ppb_video_decoder_thunk.cc |
+++ b/ppapi/thunk/ppb_video_decoder_thunk.cc |
@@ -17,12 +17,12 @@ namespace { |
typedef EnterResource<PPB_VideoDecoder_API> EnterVideoDecoder; |
PP_Resource Create(PP_Instance instance, |
- PP_Resource context_3d, |
+ PP_Resource graphics_3d, |
PP_VideoDecoder_Profile profile) { |
EnterFunction<ResourceCreationAPI> enter(instance, true); |
if (enter.failed()) |
return 0; |
- return enter.functions()->CreateVideoDecoder(instance, context_3d, profile); |
+ return enter.functions()->CreateVideoDecoder(instance, graphics_3d, profile); |
} |
PP_Bool IsVideoDecoder(PP_Resource resource) { |