diff options
author | tsepez <tsepez@chromium.org> | 2016-10-26 15:33:58 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-10-26 15:33:58 -0700 |
commit | f39074c0ae47a84c496782f8b75bcce1e1cfdf59 (patch) | |
tree | 077b7f12bff3c4aa4d53c6b74fa32e613cc73a27 /xfa/fgas/crt/fgas_stream.h | |
parent | e5cb0b191aed020da99757c117dae014ea65c6ba (diff) | |
download | pdfium-f39074c0ae47a84c496782f8b75bcce1e1cfdf59.tar.xz |
Fix some FX_BOOL / int noise in fxcrt.chromium/2902
Review-Url: https://codereview.chromium.org/2450183003
Diffstat (limited to 'xfa/fgas/crt/fgas_stream.h')
-rw-r--r-- | xfa/fgas/crt/fgas_stream.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/xfa/fgas/crt/fgas_stream.h b/xfa/fgas/crt/fgas_stream.h index c61688d7a7..34d684f9ca 100644 --- a/xfa/fgas/crt/fgas_stream.h +++ b/xfa/fgas/crt/fgas_stream.h @@ -10,11 +10,6 @@ #include "core/fxcrt/fx_stream.h" #include "core/fxcrt/fx_system.h" -class IFX_Stream; - -IFX_SeekableReadStream* FX_CreateFileRead(IFX_Stream* pBaseStream, - FX_BOOL bReleaseStream); - enum FX_STREAMACCESS { FX_STREAMACCESS_Binary = 0x00, FX_STREAMACCESS_Text = 0x01, @@ -68,4 +63,7 @@ class IFX_Stream { virtual uint16_t SetCodePage(uint16_t wCodePage) = 0; }; +IFX_SeekableReadStream* FX_CreateFileRead(IFX_Stream* pBaseStream, + bool bReleaseStream); + #endif // XFA_FGAS_CRT_FGAS_STREAM_H_ |