| Index: ppapi/proxy/resource_creation_proxy.cc
|
| diff --git a/ppapi/proxy/resource_creation_proxy.cc b/ppapi/proxy/resource_creation_proxy.cc
|
| index 99e890b1de9acef46fb2bec296aecd48a12f8718..b00f05c0793be7613af8b32b2b486eeb7bc4ff57 100644
|
| --- a/ppapi/proxy/resource_creation_proxy.cc
|
| +++ b/ppapi/proxy/resource_creation_proxy.cc
|
| @@ -50,6 +50,7 @@
|
| #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_encoder_resource.h"
|
| #include "ppapi/proxy/video_source_resource.h"
|
| #include "ppapi/proxy/websocket_resource.h"
|
| #include "ppapi/shared_impl/api_id.h"
|
| @@ -387,6 +388,10 @@ PP_Resource ResourceCreationProxy::CreateVideoDestination(
|
| instance))->GetReference();
|
| }
|
|
|
| +PP_Resource ResourceCreationProxy::CreateVideoEncoder(PP_Instance instance) {
|
| + return (new VideoEncoderResource(GetConnection(), instance))->GetReference();
|
| +}
|
| +
|
| PP_Resource ResourceCreationProxy::CreateVideoSource(
|
| PP_Instance instance) {
|
| return (new VideoSourceResource(GetConnection(), instance))->GetReference();
|
|
|