Index: ppapi/proxy/resource_creation_proxy.cc |
diff --git a/ppapi/proxy/resource_creation_proxy.cc b/ppapi/proxy/resource_creation_proxy.cc |
index eda6308c1d574b0498218806d6cf53e8e157d3dd..aa5b8fdd9d0d158c2f78a9f562b49ea243f40066 100644 |
--- a/ppapi/proxy/resource_creation_proxy.cc |
+++ b/ppapi/proxy/resource_creation_proxy.cc |
@@ -47,6 +47,7 @@ |
#include "ppapi/proxy/url_request_info_resource.h" |
#include "ppapi/proxy/url_response_info_resource.h" |
#include "ppapi/proxy/video_capture_resource.h" |
+#include "ppapi/proxy/video_decoder_resource.h" |
#include "ppapi/proxy/video_destination_resource.h" |
#include "ppapi/proxy/video_source_resource.h" |
#include "ppapi/proxy/websocket_resource.h" |
@@ -369,6 +370,10 @@ PP_Resource ResourceCreationProxy::CreateUDPSocketPrivate( |
GetConnection(), instance))->GetReference(); |
} |
+PP_Resource ResourceCreationProxy::CreateVideoDecoder(PP_Instance instance) { |
+ return (new VideoDecoderResource(GetConnection(), instance))->GetReference(); |
+} |
+ |
PP_Resource ResourceCreationProxy::CreateVideoDestination( |
PP_Instance instance) { |
return (new VideoDestinationResource(GetConnection(), |