diff options
author | Lei Zhang <thestig@chromium.org> | 2018-05-25 21:17:49 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-05-25 21:17:49 +0000 |
commit | 0d86f765b8361b7f9f3a5fcc659de2f52c806bd0 (patch) | |
tree | 5f59c428d1bed3269292625d7e26ab4462510b85 /core/fpdfapi/font/cpdf_tounicodemap.h | |
parent | 2d3a78547ae2a0c084dc312ca4b3e03ff3427a9f (diff) | |
download | pdfium-0d86f765b8361b7f9f3a5fcc659de2f52c806bd0.tar.xz |
Add proper const/non-const versions of CPDF_Dictionary::GetStreamFor().chromium/3441
BUG=pdfium:234
Change-Id: Ia3e758bbe5c445c3856f5215e900e02a16b4d7d7
Reviewed-on: https://pdfium-review.googlesource.com/32910
Commit-Queue: Lei Zhang <thestig@chromium.org>
Reviewed-by: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'core/fpdfapi/font/cpdf_tounicodemap.h')
-rw-r--r-- | core/fpdfapi/font/cpdf_tounicodemap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/fpdfapi/font/cpdf_tounicodemap.h b/core/fpdfapi/font/cpdf_tounicodemap.h index 62fc470c98..8f70791f97 100644 --- a/core/fpdfapi/font/cpdf_tounicodemap.h +++ b/core/fpdfapi/font/cpdf_tounicodemap.h @@ -20,7 +20,7 @@ class CPDF_ToUnicodeMap { CPDF_ToUnicodeMap(); ~CPDF_ToUnicodeMap(); - void Load(CPDF_Stream* pStream); + void Load(const CPDF_Stream* pStream); WideString Lookup(uint32_t charcode) const; uint32_t ReverseLookup(wchar_t unicode) const; |