diff options
author | Tom Sepez <tsepez@chromium.org> | 2018-08-29 19:35:37 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-08-29 19:35:37 +0000 |
commit | 456e9703276d803f633d5e8a6b5ee485f4e4207a (patch) | |
tree | 2b060f8d7eb61ad8a710919682b2729bf2b3a155 /core/fpdfdoc/cpdf_annot.h | |
parent | 1934a24ffdd8cd27b67fda6dc81cd4420d024db0 (diff) | |
download | pdfium-456e9703276d803f633d5e8a6b5ee485f4e4207a.tar.xz |
Remove FPDFDOC_ prefix from non-public functions
Second CL for naming consistency.
Bug: pdfium:1141
Change-Id: Idf0a0da52abd68648ab709997e0523ee3240c247
Reviewed-on: https://pdfium-review.googlesource.com/41531
Reviewed-by: Lei Zhang <thestig@chromium.org>
Commit-Queue: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'core/fpdfdoc/cpdf_annot.h')
-rw-r--r-- | core/fpdfdoc/cpdf_annot.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/core/fpdfdoc/cpdf_annot.h b/core/fpdfdoc/cpdf_annot.h index df9f773521..d24e49777c 100644 --- a/core/fpdfdoc/cpdf_annot.h +++ b/core/fpdfdoc/cpdf_annot.h @@ -128,12 +128,12 @@ class CPDF_Annot { // Get the AP in an annotation dict for a given appearance mode. // If |eMode| is not Normal and there is not AP for that mode, falls back to // the Normal AP. -CPDF_Stream* FPDFDOC_GetAnnotAP(CPDF_Dictionary* pAnnotDict, - CPDF_Annot::AppearanceMode eMode); +CPDF_Stream* GetAnnotAP(CPDF_Dictionary* pAnnotDict, + CPDF_Annot::AppearanceMode eMode); // Get the AP in an annotation dict for a given appearance mode. -// No fallbacks to Normal like in FPDFDOC_GetAnnotAP. -CPDF_Stream* FPDFDOC_GetAnnotAPNoFallback(CPDF_Dictionary* pAnnotDict, - CPDF_Annot::AppearanceMode eMode); +// No fallbacks to Normal like in GetAnnotAP. +CPDF_Stream* GetAnnotAPNoFallback(CPDF_Dictionary* pAnnotDict, + CPDF_Annot::AppearanceMode eMode); #endif // CORE_FPDFDOC_CPDF_ANNOT_H_ |