summaryrefslogtreecommitdiff
path: root/core/fpdfapi/parser/fpdf_parser_decode.h
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2018-08-29 18:25:44 +0000
committerChromium commit bot <commit-bot@chromium.org>2018-08-29 18:25:44 +0000
commit803cf76a5801536afe3ac2baad0f9a66ec27eeb6 (patch)
tree5a37abc17e7e5f8189e5681f500d73320ccbfe9c /core/fpdfapi/parser/fpdf_parser_decode.h
parentd2e4698c5daeba74a231574d63a11a858920ea59 (diff)
downloadpdfium-803cf76a5801536afe3ac2baad0f9a66ec27eeb6.tar.xz
Remove FPDFAPI_ prefix from internal cid/encoder functions
These look too much like public/ FPDF functions otherwise and yet they are not exposed anywhere beyond core/fpdfapi. Disambiguate one method vs. top-level function usage as a result. Bug: pdfium:1141 Change-Id: I9cfdfced90386bb9ef6b2b86f568f2e6f8ee6a5a Reviewed-on: https://pdfium-review.googlesource.com/41530 Commit-Queue: Tom Sepez <tsepez@chromium.org> Reviewed-by: Lei Zhang <thestig@chromium.org>
Diffstat (limited to 'core/fpdfapi/parser/fpdf_parser_decode.h')
-rw-r--r--core/fpdfapi/parser/fpdf_parser_decode.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/core/fpdfapi/parser/fpdf_parser_decode.h b/core/fpdfapi/parser/fpdf_parser_decode.h
index bf70997397..da228d223d 100644
--- a/core/fpdfapi/parser/fpdf_parser_decode.h
+++ b/core/fpdfapi/parser/fpdf_parser_decode.h
@@ -38,13 +38,13 @@ uint32_t RunLengthDecode(const uint8_t* src_buf,
uint8_t** dest_buf,
uint32_t* dest_size);
-std::unique_ptr<CCodec_ScanlineDecoder> FPDFAPI_CreateFaxDecoder(
+std::unique_ptr<CCodec_ScanlineDecoder> CreateFaxDecoder(
pdfium::span<const uint8_t> src_span,
int width,
int height,
const CPDF_Dictionary* pParams);
-std::unique_ptr<CCodec_ScanlineDecoder> FPDFAPI_CreateFlateDecoder(
+std::unique_ptr<CCodec_ScanlineDecoder> CreateFlateDecoder(
pdfium::span<const uint8_t> src_span,
int width,
int height,
@@ -62,13 +62,13 @@ uint32_t HexDecode(const uint8_t* src_buf,
uint8_t** dest_buf,
uint32_t* dest_size);
-uint32_t FPDFAPI_FlateOrLZWDecode(bool bLZW,
- const uint8_t* src_buf,
- uint32_t src_size,
- const CPDF_Dictionary* pParams,
- uint32_t estimated_size,
- uint8_t** dest_buf,
- uint32_t* dest_size);
+uint32_t FlateOrLZWDecode(bool bLZW,
+ const uint8_t* src_buf,
+ uint32_t src_size,
+ const CPDF_Dictionary* pParams,
+ uint32_t estimated_size,
+ uint8_t** dest_buf,
+ uint32_t* dest_size);
bool PDF_DataDecode(const uint8_t* src_buf,
uint32_t src_size,