diff options
author | Lei Zhang <thestig@chromium.org> | 2015-11-10 10:28:56 -0800 |
---|---|---|
committer | Lei Zhang <thestig@chromium.org> | 2015-11-10 10:28:56 -0800 |
commit | 61aad4fbb6fb1081a40b2e144106f57cf443846c (patch) | |
tree | b15ec4b3f7af763a7cf55d19a8b9a409afc6d479 /core/src/fpdfapi/fpdf_edit | |
parent | 5044cab9c228ecd39e0ba07f0f5cced0a1cf6dd4 (diff) | |
download | pdfium-61aad4fbb6fb1081a40b2e144106f57cf443846c.tar.xz |
Merge to XFA: Cleanup CPDF_Stream:
- Remove CPDF_Stream::Create() and checks that it might fail.
- Remove m_pCryptoHandler that's always a nullptr.
- Remove m_FileOffset that's always 0.
- Rename file version of InitStream() to InitStreamFromFile().
- Use IsMemoryBased() in more places.
TBR=dsinclair@chromium.org
Review URL: https://codereview.chromium.org/1415163009 .
(cherry picked from commit e6e16954f0cdc324849fca9da883be8f131b3834)
Review URL: https://codereview.chromium.org/1418493006 .
Diffstat (limited to 'core/src/fpdfapi/fpdf_edit')
-rw-r--r-- | core/src/fpdfapi/fpdf_edit/fpdf_edit_image.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/src/fpdfapi/fpdf_edit/fpdf_edit_image.cpp b/core/src/fpdfapi/fpdf_edit/fpdf_edit_image.cpp index 2ec5727444..3ffe482026 100644 --- a/core/src/fpdfapi/fpdf_edit/fpdf_edit_image.cpp +++ b/core/src/fpdfapi/fpdf_edit/fpdf_edit_image.cpp @@ -85,7 +85,7 @@ void CPDF_Image::SetJpegImage(IFX_FileRead* pFile) { if (!pDict) { return; } - m_pStream->InitStream(pFile, pDict); + m_pStream->InitStreamFromFile(pFile, pDict); } void _DCTEncodeBitmap(CPDF_Dictionary* pBitmapDict, const CFX_DIBitmap* pBitmap, @@ -178,8 +178,8 @@ void CPDF_Image::SetImage(const CFX_DIBitmap* pBitmap, ptr[2] = (uint8_t)argb; ptr += 3; } - CPDF_Stream* pCTS = CPDF_Stream::Create(pColorTable, iPalette * 3, - CPDF_Dictionary::Create()); + CPDF_Stream* pCTS = + new CPDF_Stream(pColorTable, iPalette * 3, new CPDF_Dictionary); m_pDocument->AddIndirectObject(pCTS); pCS->AddReference(m_pDocument, pCTS); pDict->SetAtReference(FX_BSTRC("ColorSpace"), m_pDocument, pCS); @@ -374,7 +374,7 @@ void CPDF_Image::SetImage(const CFX_DIBitmap* pBitmap, m_pStream->InitStream(dest_buf, dest_size, pDict); } else { pFileWrite->Flush(); - m_pStream->InitStream(pFileRead, pDict); + m_pStream->InitStreamFromFile(pFileRead, pDict); } m_bIsMask = pBitmap->IsAlphaMask(); m_Width = BitmapWidth; |