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

Unified Diff: ppapi/proxy/ppb_url_response_info_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_url_response_info_proxy.h ('k') | ppapi/proxy/ppb_var_deprecated_proxy.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/ppb_url_response_info_proxy.cc
diff --git a/ppapi/proxy/ppb_url_response_info_proxy.cc b/ppapi/proxy/ppb_url_response_info_proxy.cc
index ace317c3a573bc768b3d321073dc4398e0af7f28..c9da1ef7384d8bc5219ba1f16b92e730c9b1a37d 100644
--- a/ppapi/proxy/ppb_url_response_info_proxy.cc
+++ b/ppapi/proxy/ppb_url_response_info_proxy.cc
@@ -53,7 +53,7 @@ PP_Var URLResponseInfo::GetProperty(PP_URLResponseProperty property) {
PluginDispatcher* dispatcher = PluginDispatcher::GetForResource(this);
ReceiveSerializedVarReturnValue result;
dispatcher->Send(new PpapiHostMsg_PPBURLResponseInfo_GetProperty(
- INTERFACE_ID_PPB_URL_RESPONSE_INFO, host_resource(), property, &result));
+ API_ID_PPB_URL_RESPONSE_INFO, host_resource(), property, &result));
return result.Return(dispatcher);
}
@@ -65,7 +65,7 @@ PP_Resource URLResponseInfo::GetBodyAsFileRef() {
PPB_FileRef_CreateInfo create_info;
PluginDispatcher::GetForResource(this)->Send(
new PpapiHostMsg_PPBURLResponseInfo_GetBodyAsFileRef(
- INTERFACE_ID_PPB_URL_RESPONSE_INFO, host_resource(), &create_info));
+ API_ID_PPB_URL_RESPONSE_INFO, host_resource(), &create_info));
return PPB_FileRef_Proxy::DeserializeFileRef(create_info);
}
@@ -120,7 +120,7 @@ void PPB_URLResponseInfo_Proxy::OnMsgGetBodyAsFileRef(
// Use the FileRef proxy to serialize.
PPB_FileRef_Proxy* file_ref_proxy = static_cast<PPB_FileRef_Proxy*>(
- dispatcher()->GetInterfaceProxy(INTERFACE_ID_PPB_FILE_REF));
+ dispatcher()->GetInterfaceProxy(API_ID_PPB_FILE_REF));
file_ref_proxy->SerializeFileRef(file_ref, result);
}
« no previous file with comments | « ppapi/proxy/ppb_url_response_info_proxy.h ('k') | ppapi/proxy/ppb_var_deprecated_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698