| Index: core/fpdfapi/fpdf_parser/include/cpdf_stream_acc.h
|
| diff --git a/core/fpdfapi/fpdf_parser/include/cpdf_stream_acc.h b/core/fpdfapi/fpdf_parser/include/cpdf_stream_acc.h
|
| index 8fad265a7530b9c00e10c833ee4d3028cbdaaae8..6176753debce327255aa8e09d4ffc73d9bf8cc77 100644
|
| --- a/core/fpdfapi/fpdf_parser/include/cpdf_stream_acc.h
|
| +++ b/core/fpdfapi/fpdf_parser/include/cpdf_stream_acc.h
|
| @@ -19,7 +19,7 @@ class CPDF_StreamAcc {
|
|
|
| void LoadAllData(const CPDF_Stream* pStream,
|
| FX_BOOL bRawAccess = FALSE,
|
| - FX_DWORD estimated_size = 0,
|
| + uint32_t estimated_size = 0,
|
| FX_BOOL bImageAcc = FALSE);
|
|
|
| const CPDF_Stream* GetStream() const { return m_pStream; }
|
| @@ -28,14 +28,14 @@ class CPDF_StreamAcc {
|
| }
|
|
|
| const uint8_t* GetData() const;
|
| - FX_DWORD GetSize() const;
|
| + uint32_t GetSize() const;
|
| const CFX_ByteString& GetImageDecoder() const { return m_ImageDecoder; }
|
| const CPDF_Dictionary* GetImageParam() const { return m_pImageParam; }
|
| uint8_t* DetachData();
|
|
|
| protected:
|
| uint8_t* m_pData;
|
| - FX_DWORD m_dwSize;
|
| + uint32_t m_dwSize;
|
| FX_BOOL m_bNewBuf;
|
| CFX_ByteString m_ImageDecoder;
|
| CPDF_Dictionary* m_pImageParam;
|
|
|