diff options
author | Lei Zhang <thestig@chromium.org> | 2016-01-04 14:14:49 -0800 |
---|---|---|
committer | Lei Zhang <thestig@chromium.org> | 2016-01-04 14:14:49 -0800 |
commit | 03f5040cbe03cc93e133cb98ecce6725e2679170 (patch) | |
tree | 0c456584fa2f98093f3e377f48382cde1bab7b4f /core/include | |
parent | 5594538fcc96c38db34f336223140cf703e3cca0 (diff) | |
download | pdfium-03f5040cbe03cc93e133cb98ecce6725e2679170.tar.xz |
Remove CPDF_Creator::m_ObjectSize, it's never read from.chromium/2615chromium/2614chromium/2613
R=tsepez@chromium.org
Review URL: https://codereview.chromium.org/1543413002 .
Diffstat (limited to 'core/include')
-rw-r--r-- | core/include/fpdfapi/fpdf_serial.h | 6 | ||||
-rw-r--r-- | core/include/fxcrt/fx_basic.h | 3 |
2 files changed, 2 insertions, 7 deletions
diff --git a/core/include/fpdfapi/fpdf_serial.h b/core/include/fpdfapi/fpdf_serial.h index 4a325341cb..b0989f7f35 100644 --- a/core/include/fpdfapi/fpdf_serial.h +++ b/core/include/fpdfapi/fpdf_serial.h @@ -91,15 +91,11 @@ class CPDF_Creator { FX_DWORD m_dwFlags; FX_POSITION m_Pos; FX_FILESIZE m_XrefStart; - CFX_FileSizeListArray m_ObjectOffset; - - CFX_DWordListArray m_ObjectSize; CFX_DWordArray m_NewObjNumArray; - CPDF_Array* m_pIDArray; - int32_t m_FileVersion; + friend class CPDF_ObjectStream; friend class CPDF_XRefStream; }; diff --git a/core/include/fxcrt/fx_basic.h b/core/include/fxcrt/fx_basic.h index bb34e2bc15..fd35de906d 100644 --- a/core/include/fxcrt/fx_basic.h +++ b/core/include/fxcrt/fx_basic.h @@ -1082,8 +1082,7 @@ class CFX_ListArrayTemplate { }; typedef CFX_ListArrayTemplate<CFX_SortListArray<sizeof(FX_FILESIZE)>, FX_FILESIZE> CFX_FileSizeListArray; -typedef CFX_ListArrayTemplate<CFX_SortListArray<sizeof(FX_DWORD)>, FX_DWORD> - CFX_DWordListArray; + typedef enum { Ready, ToBeContinued, |