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

Unified Diff: ppapi/c/private/ppb_pdf.h

Issue 6542064: Add some files to the C compilation test, and fix some stuff that wasn't C com... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 10 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/c/private/ppb_flash_menu.h ('k') | ppapi/tests/all_c_includes.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/c/private/ppb_pdf.h
===================================================================
--- ppapi/c/private/ppb_pdf.h (revision 75765)
+++ ppapi/c/private/ppb_pdf.h (working copy)
@@ -82,8 +82,8 @@
struct PPB_PDF {
// Returns a localized string.
- PP_Var (*GetLocalizedString)(PP_Instance instance,
- PP_ResourceString string_id);
+ struct PP_Var (*GetLocalizedString)(PP_Instance instance,
+ PP_ResourceString string_id);
// Returns a resource image.
PP_Resource (*GetResourceImage)(PP_Instance instance,
@@ -95,7 +95,7 @@
// Currently Linux-only.
PP_Resource (*GetFontFileWithFallback)(
PP_Instance instance,
- const PP_FontDescription_Dev* description,
+ const struct PP_FontDescription_Dev* description,
PP_PrivateFontCharset charset);
// Given a resource previously returned by GetFontFileWithFallback, returns
@@ -112,7 +112,7 @@
const unsigned short* string,
const unsigned short* term,
bool case_sensitive,
- PP_PrivateFindResult** results,
+ struct PP_PrivateFindResult** results,
int* count);
// Since WebFrame doesn't know about PPAPI requests, it'll think the page has
@@ -129,7 +129,7 @@
void (*HistogramPDFPageCount)(int count);
// Notifies the browser that the given action has been performed.
- void (*UserMetricsRecordAction)(PP_Var action);
+ void (*UserMetricsRecordAction)(struct PP_Var action);
// Notifies the browser that the PDF has an unsupported feature.
void (*HasUnsupportedFeature)(PP_Instance instance);
« no previous file with comments | « ppapi/c/private/ppb_flash_menu.h ('k') | ppapi/tests/all_c_includes.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698