diff options
author | piman@google.com <piman@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-12 20:01:42 +0000 |
---|---|---|
committer | piman@google.com <piman@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-12 20:01:42 +0000 |
commit | 8c3bd1d8c71d8432beb624ce1434ca962665de90 (patch) | |
tree | 03cfc9842f7c75c1055895343d57b7ff709b90b8 /ppapi/proxy/dispatcher.cc | |
parent | 2bc27608c7957eb03a98cd3b6929d6e6c068b478 (diff) | |
download | chromium_src-8c3bd1d8c71d8432beb624ce1434ca962665de90.zip chromium_src-8c3bd1d8c71d8432beb624ce1434ca962665de90.tar.gz chromium_src-8c3bd1d8c71d8432beb624ce1434ca962665de90.tar.bz2 |
Add proxy for PPP_Graphics_3D_Dev
BUG=none
TEST=run OOP Flash, kill the GPU process, check that Flash got the message.
Review URL: http://codereview.chromium.org/6823069
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81294 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/proxy/dispatcher.cc')
-rw-r--r-- | ppapi/proxy/dispatcher.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ppapi/proxy/dispatcher.cc b/ppapi/proxy/dispatcher.cc index c0b71c6..f21a25c 100644 --- a/ppapi/proxy/dispatcher.cc +++ b/ppapi/proxy/dispatcher.cc @@ -77,6 +77,7 @@ #include "ppapi/proxy/ppb_url_util_proxy.h" #include "ppapi/proxy/ppb_var_deprecated_proxy.h" #include "ppapi/proxy/ppp_class_proxy.h" +#include "ppapi/proxy/ppp_graphics_3d_proxy.h" #include "ppapi/proxy/ppp_instance_proxy.h" #include "ppapi/proxy/var_serialization_rules.h" @@ -144,6 +145,7 @@ InterfaceList::InterfaceList() { #endif // PPP (plugin) interfaces. + AddPPP(PPP_Graphics3D_Proxy::GetInfo()); AddPPP(PPP_Instance_Proxy::GetInfo()); } |