summaryrefslogtreecommitdiff
path: root/core/fpdfapi/fpdf_edit/include/cpdf_creator.h
diff options
context:
space:
mode:
authordsinclair <dsinclair@chromium.org>2016-04-19 10:32:45 -0700
committerCommit bot <commit-bot@chromium.org>2016-04-19 10:32:46 -0700
commit2fa0e13ec2a79cc85d5e018a6420e677b28160cc (patch)
tree246f2790f5f36af8971994adde0dd72d940e8c86 /core/fpdfapi/fpdf_edit/include/cpdf_creator.h
parent0582ad18b1e7ab9e404b7f8071a015ec756f5afe (diff)
downloadpdfium-2fa0e13ec2a79cc85d5e018a6420e677b28160cc.tar.xz
Remove IPDF_CryptoHandler and IPDF_SecurityHandler.
This CL replaces the interfaces with the concrete classes. The concrete classes are also renamed to remove the Standard from their names. BUG=pdfium:468 Review URL: https://codereview.chromium.org/1898173002
Diffstat (limited to 'core/fpdfapi/fpdf_edit/include/cpdf_creator.h')
-rw-r--r--core/fpdfapi/fpdf_edit/include/cpdf_creator.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/fpdfapi/fpdf_edit/include/cpdf_creator.h b/core/fpdfapi/fpdf_edit/include/cpdf_creator.h
index d6a1c1079a..e9490a3be7 100644
--- a/core/fpdfapi/fpdf_edit/include/cpdf_creator.h
+++ b/core/fpdfapi/fpdf_edit/include/cpdf_creator.h
@@ -10,12 +10,12 @@
#include "core/fxcrt/include/fx_basic.h"
class CPDF_Array;
+class CPDF_CryptoHandler;
class CPDF_Dictionary;
class CPDF_Document;
class CPDF_Object;
class CPDF_Parser;
class CPDF_XRefStream;
-class IPDF_CryptoHandler;
#define FPDFCREATE_INCREMENTAL 1
#define FPDFCREATE_NO_ORIGINAL 2
@@ -69,7 +69,7 @@ class CPDF_Creator {
int32_t WriteStream(const CPDF_Object* pStream,
uint32_t objnum,
- IPDF_CryptoHandler* pCrypto);
+ CPDF_CryptoHandler* pCrypto);
CPDF_Document* m_pDocument;
CPDF_Parser* m_pParser;
@@ -79,7 +79,7 @@ class CPDF_Creator {
uint32_t m_dwEnryptObjNum;
FX_BOOL m_bEncryptCloned;
FX_BOOL m_bStandardSecurity;
- IPDF_CryptoHandler* m_pCryptoHandler;
+ CPDF_CryptoHandler* m_pCryptoHandler;
FX_BOOL m_bNewCrypto;
FX_BOOL m_bEncryptMetadata;
CPDF_Object* m_pMetadata;