From 0e568818249ff83d239b98cbb32dec94358da0c7 Mon Sep 17 00:00:00 2001 From: Ryan Harrison Date: Sat, 21 Oct 2017 02:07:02 -0400 Subject: Add in count value for form types BUG=chromium:775519,chromium:768986 Adding metric form types Change-Id: Ic99a5ac988998986f06cb79d08458afeda49a5d1 Reviewed-on: https://pdfium-review.googlesource.com/16392 Commit-Queue: Ryan Harrison Reviewed-by: Lei Zhang Reviewed-by: Henrique Nakashima --- public/fpdf_formfill.h | 3 +++ xfa/fxfa/fxfa.h | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/public/fpdf_formfill.h b/public/fpdf_formfill.h index 0204c846d3..5bc3cf3a6d 100644 --- a/public/fpdf_formfill.h +++ b/public/fpdf_formfill.h @@ -12,11 +12,14 @@ typedef void* FPDF_FORMHANDLE; +// These values are return values for a public API, so should not be changed +// other than the count when adding new values. #define FORMTYPE_NONE 0 // Document contains no forms #define FORMTYPE_ACRO_FORM 1 // Forms are specified using AcroForm spec #define FORMTYPE_XFA_FULL 2 // Forms are specified using the entire XFA spec #define FORMTYPE_XFA_FOREGROUND \ 3 // Forms are specified using the XFAF subset of XFA spec +#define FORMTYPE_COUNT 4 // The number of form types // Exported Functions #ifdef __cplusplus diff --git a/xfa/fxfa/fxfa.h b/xfa/fxfa/fxfa.h index ee74fc14dd..bb6864a6a4 100644 --- a/xfa/fxfa/fxfa.h +++ b/xfa/fxfa/fxfa.h @@ -45,7 +45,7 @@ enum class FormType { kNone = 0, kAcroForm = 1, kXFAFull = 2, - kXFAForeground = 3 + kXFAForeground = 3, }; #define XFA_PARSESTATUS_StatusErr -3 -- cgit v1.2.3