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

Unified Diff: ppapi/proxy/ppb_pdf_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_instance_proxy.cc ('k') | ppapi/proxy/ppb_surface_3d_proxy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/ppb_pdf_proxy.cc
diff --git a/ppapi/proxy/ppb_pdf_proxy.cc b/ppapi/proxy/ppb_pdf_proxy.cc
index 874e4870fa0a2a78c16e175a50a96968f5cff237..7866e41a41a3ccac57d5bc046a50f0021a5675fb 100644
--- a/ppapi/proxy/ppb_pdf_proxy.cc
+++ b/ppapi/proxy/ppb_pdf_proxy.cc
@@ -75,7 +75,7 @@ PP_Resource GetFontFileWithFallback(
HostResource result;
dispatcher->Send(new PpapiHostMsg_PPBPDF_GetFontFileWithFallback(
- INTERFACE_ID_PPB_PDF, instance, desc, charset, &result));
+ API_ID_PPB_PDF, instance, desc, charset, &result));
if (result.is_null())
return 0;
return (new PrivateFontFile(result))->GetReference();
@@ -99,7 +99,7 @@ bool GetFontTableForPrivateFontFile(PP_Resource font_file,
if (!contents) {
std::string deserialized;
dispatcher->Send(new PpapiHostMsg_PPBPDF_GetFontTableForPrivateFontFile(
- INTERFACE_ID_PPB_PDF, object->host_resource(), table, &deserialized));
+ API_ID_PPB_PDF, object->host_resource(), table, &deserialized));
if (deserialized.empty())
return false;
contents = object->AddFontTable(table, deserialized);
@@ -141,7 +141,7 @@ const InterfaceProxy::Info* PPB_PDF_Proxy::GetInfo() {
static const Info info = {
&pdf_interface,
PPB_PDF_INTERFACE,
- INTERFACE_ID_PPB_PDF,
+ API_ID_PPB_PDF,
true,
&CreatePDFProxy,
};
« no previous file with comments | « ppapi/proxy/ppb_instance_proxy.cc ('k') | ppapi/proxy/ppb_surface_3d_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698