diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-03-14 15:12:09 -0400 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-03-15 01:13:16 +0000 |
commit | 4d67473d6ce55ad6361dae84b00283445f148f37 (patch) | |
tree | 872e1ff82d47d95e050c6d2666225c84901ae2d7 /xfa/fgas/font/cfgas_fontmgr.h | |
parent | 193e6ca5e48ee99e620f0e7546f1407ba1a20323 (diff) | |
download | pdfium-4d67473d6ce55ad6361dae84b00283445f148f37.tar.xz |
Replace FX_POSITION in GFGAS_FontMgr with bool
Change-Id: Iddd99312aee6447c05be5633eead023a004e65e1
Reviewed-on: https://pdfium-review.googlesource.com/3034
Reviewed-by: Nicolás Peña <npm@chromium.org>
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'xfa/fgas/font/cfgas_fontmgr.h')
-rw-r--r-- | xfa/fgas/font/cfgas_fontmgr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xfa/fgas/font/cfgas_fontmgr.h b/xfa/fgas/font/cfgas_fontmgr.h index 63a8d3b146..5918a23143 100644 --- a/xfa/fgas/font/cfgas_fontmgr.h +++ b/xfa/fgas/font/cfgas_fontmgr.h @@ -169,8 +169,8 @@ class CFX_FontSourceEnum_File { CFX_FontSourceEnum_File(); ~CFX_FontSourceEnum_File(); - FX_POSITION GetStartPosition(); - CFX_RetainPtr<IFX_FileAccess> GetNext(FX_POSITION& pos); + bool HasStartPosition(); + CFX_RetainPtr<IFX_FileAccess> GetNext(); private: CFX_ByteString GetNextFile(); |