From a0b1954794b7a8a279ba00787628cc7f8d1419d9 Mon Sep 17 00:00:00 2001 From: Dan Sinclair Date: Tue, 9 May 2017 12:36:08 -0400 Subject: Rename fpdf_edit_create.cpp to cpdf_creator.cpp MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This Cl renames the fpdf_edit_create file to better match the cpdf_creator content. The CPDF_ObjectStream and CPDF_XRefStream code is moved out to their own .cpp files. Needed anonymous classes are split out as well. Change-Id: Ic83fb319ce28c816db82a4286e22032dc68811bc Reviewed-on: https://pdfium-review.googlesource.com/5171 Commit-Queue: dsinclair Reviewed-by: Tom Sepez Reviewed-by: Nicolás Peña --- core/fpdfapi/edit/cpdf_encryptor.h | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 core/fpdfapi/edit/cpdf_encryptor.h (limited to 'core/fpdfapi/edit/cpdf_encryptor.h') diff --git a/core/fpdfapi/edit/cpdf_encryptor.h b/core/fpdfapi/edit/cpdf_encryptor.h new file mode 100644 index 0000000000..00c9337eb3 --- /dev/null +++ b/core/fpdfapi/edit/cpdf_encryptor.h @@ -0,0 +1,31 @@ +// Copyright 2017 PDFium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com + +#ifndef CORE_FPDFAPI_EDIT_CPDF_ENCRYPTOR_H_ +#define CORE_FPDFAPI_EDIT_CPDF_ENCRYPTOR_H_ + +#include + +class CPDF_CryptoHandler; + +class CPDF_Encryptor { + public: + CPDF_Encryptor(CPDF_CryptoHandler* pHandler, + int objnum, + uint8_t* src_data, + uint32_t src_size); + ~CPDF_Encryptor(); + + uint32_t GetSize() const { return m_dwSize; } + uint8_t* GetData() const { return m_pData; } + + private: + uint8_t* m_pData; + uint32_t m_dwSize; + bool m_bNewBuf; +}; + +#endif // CORE_FPDFAPI_EDIT_CPDF_ENCRYPTOR_H_ -- cgit v1.2.3