summaryrefslogtreecommitdiffstats
path: root/ppapi/proxy/ppp_graphics_3d_proxy.cc
diff options
context:
space:
mode:
authornfullagar@google.com <nfullagar@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-07 17:10:46 +0000
committernfullagar@google.com <nfullagar@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-07 17:10:46 +0000
commitfae0e947dd72d6499abcd4cc9d8a2c988802ecc7 (patch)
tree64894d705184fa15943381a1a083cd4a82e242a0 /ppapi/proxy/ppp_graphics_3d_proxy.cc
parent29ee58a0ca74da203815ffc416e0b52cafb9c79e (diff)
downloadchromium_src-fae0e947dd72d6499abcd4cc9d8a2c988802ecc7.zip
chromium_src-fae0e947dd72d6499abcd4cc9d8a2c988802ecc7.tar.gz
chromium_src-fae0e947dd72d6499abcd4cc9d8a2c988802ecc7.tar.bz2
reconstitute moving 3d out of dev CL. (previous attempt was reverted)
previous CL: http://codereview.chromium.org/7737013/ BUG= http://code.google.com/p/chromium/issues/detail?id=94320 TEST= try bots, manual testing Review URL: http://codereview.chromium.org/7837018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@99968 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/proxy/ppp_graphics_3d_proxy.cc')
-rw-r--r--ppapi/proxy/ppp_graphics_3d_proxy.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/ppapi/proxy/ppp_graphics_3d_proxy.cc b/ppapi/proxy/ppp_graphics_3d_proxy.cc
index 2ca0231..a477227 100644
--- a/ppapi/proxy/ppp_graphics_3d_proxy.cc
+++ b/ppapi/proxy/ppp_graphics_3d_proxy.cc
@@ -4,7 +4,7 @@
#include "ppapi/proxy/ppp_graphics_3d_proxy.h"
-#include "ppapi/c/dev/ppp_graphics_3d_dev.h"
+#include "ppapi/c/ppp_graphics_3d.h"
#include "ppapi/proxy/host_dispatcher.h"
#include "ppapi/proxy/plugin_dispatcher.h"
#include "ppapi/proxy/ppapi_messages.h"
@@ -16,11 +16,11 @@ namespace {
void ContextLost(PP_Instance instance) {
HostDispatcher::GetForInstance(instance)->Send(
- new PpapiMsg_PPPGraphics3D_ContextLost(INTERFACE_ID_PPP_GRAPHICS_3D_DEV,
+ new PpapiMsg_PPPGraphics3D_ContextLost(INTERFACE_ID_PPP_GRAPHICS_3D,
instance));
}
-static const PPP_Graphics3D_Dev graphics_3d_interface = {
+static const PPP_Graphics3D graphics_3d_interface = {
&ContextLost
};
@@ -43,8 +43,8 @@ PPP_Graphics3D_Proxy::~PPP_Graphics3D_Proxy() {
const InterfaceProxy::Info* PPP_Graphics3D_Proxy::GetInfo() {
static const Info info = {
&graphics_3d_interface,
- PPP_GRAPHICS_3D_DEV_INTERFACE,
- INTERFACE_ID_PPP_GRAPHICS_3D_DEV,
+ PPP_GRAPHICS_3D_INTERFACE,
+ INTERFACE_ID_PPP_GRAPHICS_3D,
false,
&CreateGraphics3DProxy,
};