Chromium Code Reviews
[email protected] (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(187)

Unified Diff: ppapi/proxy/ppb_surface_3d_proxy.cc

Issue 8333004: Rename InterfaceID to ApiID and move the file. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merged Created 9 years, 2 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/ppb_surface_3d_proxy.h ('k') | ppapi/proxy/ppb_testing_proxy.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/ppb_surface_3d_proxy.cc
diff --git a/ppapi/proxy/ppb_surface_3d_proxy.cc b/ppapi/proxy/ppb_surface_3d_proxy.cc
index c46f01bb5953f6a0ffb3e86e9c0ee8ab58624c46..b61ae6ced37419bc09f54c91ff12700cc57929dc 100644
--- a/ppapi/proxy/ppb_surface_3d_proxy.cc
+++ b/ppapi/proxy/ppb_surface_3d_proxy.cc
@@ -73,7 +73,7 @@ int32_t Surface3D::SwapBuffers(PP_CompletionCallback callback) {
current_flush_callback_ = callback;
IPC::Message* msg = new PpapiHostMsg_PPBSurface3D_SwapBuffers(
- INTERFACE_ID_PPB_SURFACE_3D, host_resource());
+ API_ID_PPB_SURFACE_3D, host_resource());
msg->set_unblock(true);
PluginDispatcher::GetForResource(this)->Send(msg);
@@ -100,7 +100,7 @@ const InterfaceProxy::Info* PPB_Surface3D_Proxy::GetInfo() {
static const Info info = {
thunk::GetPPB_Surface3D_Dev_Thunk(),
PPB_SURFACE_3D_DEV_INTERFACE,
- INTERFACE_ID_PPB_SURFACE_3D,
+ API_ID_PPB_SURFACE_3D,
false,
&CreateSurface3DProxy,
};
@@ -128,7 +128,7 @@ PP_Resource PPB_Surface3D_Proxy::CreateProxyResource(
HostResource result;
dispatcher->Send(new PpapiHostMsg_PPBSurface3D_Create(
- INTERFACE_ID_PPB_SURFACE_3D, instance, config, attribs, &result));
+ API_ID_PPB_SURFACE_3D, instance, config, attribs, &result));
if (result.is_null())
return 0;
@@ -187,7 +187,7 @@ void PPB_Surface3D_Proxy::SendSwapBuffersACKToPlugin(
int32_t result,
const HostResource& surface_3d) {
dispatcher()->Send(new PpapiMsg_PPBSurface3D_SwapBuffersACK(
- INTERFACE_ID_PPB_SURFACE_3D, surface_3d, result));
+ API_ID_PPB_SURFACE_3D, surface_3d, result));
}
} // namespace proxy
« no previous file with comments | « ppapi/proxy/ppb_surface_3d_proxy.h ('k') | ppapi/proxy/ppb_testing_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698