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

Unified Diff: ppapi/proxy/ppp_video_decoder_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/ppp_mouse_lock_proxy.cc ('k') | ppapi/proxy/resource_creation_proxy.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/ppp_video_decoder_proxy.cc
diff --git a/ppapi/proxy/ppp_video_decoder_proxy.cc b/ppapi/proxy/ppp_video_decoder_proxy.cc
index 385280621c1a59fc8325daec91a873b01a247cd8..d0cb1f32b27db8c6329d7e10cdf6331e61f4e94b 100644
--- a/ppapi/proxy/ppp_video_decoder_proxy.cc
+++ b/ppapi/proxy/ppp_video_decoder_proxy.cc
@@ -28,7 +28,7 @@ void ProvidePictureBuffers(PP_Instance instance, PP_Resource decoder,
HostDispatcher::GetForInstance(instance)->Send(
new PpapiMsg_PPPVideoDecoder_ProvidePictureBuffers(
- INTERFACE_ID_PPP_VIDEO_DECODER_DEV,
+ API_ID_PPP_VIDEO_DECODER_DEV,
decoder_resource, req_num_of_bufs, *dimensions));
}
@@ -39,7 +39,7 @@ void DismissPictureBuffer(PP_Instance instance, PP_Resource decoder,
HostDispatcher::GetForInstance(instance)->Send(
new PpapiMsg_PPPVideoDecoder_DismissPictureBuffer(
- INTERFACE_ID_PPP_VIDEO_DECODER_DEV,
+ API_ID_PPP_VIDEO_DECODER_DEV,
decoder_resource, picture_buffer_id));
}
@@ -50,7 +50,7 @@ void PictureReady(PP_Instance instance, PP_Resource decoder,
HostDispatcher::GetForInstance(instance)->Send(
new PpapiMsg_PPPVideoDecoder_PictureReady(
- INTERFACE_ID_PPP_VIDEO_DECODER_DEV, decoder_resource, *picture));
+ API_ID_PPP_VIDEO_DECODER_DEV, decoder_resource, *picture));
}
void EndOfStream(PP_Instance instance, PP_Resource decoder) {
@@ -59,7 +59,7 @@ void EndOfStream(PP_Instance instance, PP_Resource decoder) {
HostDispatcher::GetForInstance(instance)->Send(
new PpapiMsg_PPPVideoDecoder_NotifyEndOfStream(
- INTERFACE_ID_PPP_VIDEO_DECODER_DEV, decoder_resource));
+ API_ID_PPP_VIDEO_DECODER_DEV, decoder_resource));
}
void NotifyError(PP_Instance instance, PP_Resource decoder,
@@ -69,7 +69,7 @@ void NotifyError(PP_Instance instance, PP_Resource decoder,
HostDispatcher::GetForInstance(instance)->Send(
new PpapiMsg_PPPVideoDecoder_NotifyError(
- INTERFACE_ID_PPP_VIDEO_DECODER_DEV, decoder_resource, error));
+ API_ID_PPP_VIDEO_DECODER_DEV, decoder_resource, error));
}
static const PPP_VideoDecoder_Dev video_decoder_interface = {
@@ -103,7 +103,7 @@ const InterfaceProxy::Info* PPP_VideoDecoder_Proxy::GetInfo() {
static const Info info = {
&video_decoder_interface,
PPP_VIDEODECODER_DEV_INTERFACE,
- INTERFACE_ID_PPP_VIDEO_DECODER_DEV,
+ API_ID_PPP_VIDEO_DECODER_DEV,
false,
&CreateVideoDecoderPPPProxy,
};
« no previous file with comments | « ppapi/proxy/ppp_mouse_lock_proxy.cc ('k') | ppapi/proxy/resource_creation_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698