| Index: ppapi/proxy/dispatcher.cc
|
| diff --git a/ppapi/proxy/dispatcher.cc b/ppapi/proxy/dispatcher.cc
|
| index 0edc24d4a422d5a0257a2e4d92419c13f56ddfd9..6e9cceaf8edc9eb02175f145967593ad49073453 100644
|
| --- a/ppapi/proxy/dispatcher.cc
|
| +++ b/ppapi/proxy/dispatcher.cc
|
| @@ -80,11 +80,13 @@
|
| #include "ppapi/proxy/ppb_url_util_proxy.h"
|
| #include "ppapi/proxy/ppb_var_deprecated_proxy.h"
|
| #include "ppapi/proxy/ppb_var_proxy.h"
|
| +#include "ppapi/proxy/ppb_video_decoder_proxy.h"
|
| #include "ppapi/proxy/ppp_class_proxy.h"
|
| #include "ppapi/proxy/ppp_graphics_3d_proxy.h"
|
| #include "ppapi/proxy/ppp_input_event_proxy.h"
|
| #include "ppapi/proxy/ppp_instance_private_proxy.h"
|
| #include "ppapi/proxy/ppp_instance_proxy.h"
|
| +#include "ppapi/proxy/ppp_video_decoder_proxy.h"
|
| #include "ppapi/proxy/var_serialization_rules.h"
|
|
|
| namespace pp {
|
| @@ -161,6 +163,7 @@ InterfaceList::InterfaceList() {
|
| AddPPB(PPB_URLUtil_Proxy::GetInfo());
|
| AddPPB(PPB_Var_Deprecated_Proxy::GetInfo());
|
| AddPPB(PPB_Var_Proxy::GetInfo());
|
| + AddPPB(PPB_VideoDecoder_Proxy::GetInfo());
|
|
|
| #ifdef ENABLE_FLAPPER_HACKS
|
| AddPPB(PPB_Flash_NetConnector_Proxy::GetInfo());
|
| @@ -171,6 +174,7 @@ InterfaceList::InterfaceList() {
|
| AddPPP(PPP_InputEvent_Proxy::GetInfo());
|
| AddPPP(PPP_Instance_Private_Proxy::GetInfo());
|
| AddPPP(PPP_Instance_Proxy::GetInfo1_0());
|
| + AddPPP(PPP_VideoDecoder_Proxy::GetInfo());
|
| }
|
|
|
| void InterfaceList::AddPPP(const InterfaceProxy::Info* info) {
|
|
|