Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(498)

Unified Diff: ppapi/proxy/ppp_graphics_3d_proxy.cc

Issue 7737013: Move PPAPI graphics3d and opengles interfaces out of Dev. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ppapi/proxy/ppp_graphics_3d_proxy.h ('k') | ppapi/shared_impl/opengles2_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/ppp_graphics_3d_proxy.cc
===================================================================
--- ppapi/proxy/ppp_graphics_3d_proxy.cc (revision 99848)
+++ ppapi/proxy/ppp_graphics_3d_proxy.cc (working copy)
@@ -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 @@
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 @@
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,
};
« no previous file with comments | « ppapi/proxy/ppp_graphics_3d_proxy.h ('k') | ppapi/shared_impl/opengles2_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698