summaryrefslogtreecommitdiff
path: root/core/include/fpdfapi/ipdf_security_handler.h
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2016-03-09 17:42:18 -0800
committerTom Sepez <tsepez@chromium.org>2016-03-09 17:42:18 -0800
commita1193aedb8797fcb26f54d7b99e4662ae72e3de9 (patch)
tree97f3a1c85e6227e4910981d735cd5ada62ac2b5c /core/include/fpdfapi/ipdf_security_handler.h
parent99406198ac4921a53425edc73cac67e7b4760895 (diff)
downloadpdfium-a1193aedb8797fcb26f54d7b99e4662ae72e3de9.tar.xz
Split off IPDF_CryptoHandler into its own .cpp/.h files.
CPDF_CryptoHandler was always a pure-virtual class, now it is named as IPDF_ to indicate this. R=dsinclair@chromium.org Review URL: https://codereview.chromium.org/1782673002 .
Diffstat (limited to 'core/include/fpdfapi/ipdf_security_handler.h')
-rw-r--r--core/include/fpdfapi/ipdf_security_handler.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/include/fpdfapi/ipdf_security_handler.h b/core/include/fpdfapi/ipdf_security_handler.h
index 699cf38c3a..4dce7c6963 100644
--- a/core/include/fpdfapi/ipdf_security_handler.h
+++ b/core/include/fpdfapi/ipdf_security_handler.h
@@ -11,7 +11,7 @@
class CPDF_Parser;
class CPDF_Dictionary;
-class CPDF_CryptoHandler;
+class IPDF_CryptoHandler;
#define FXCIPHER_NONE 0
#define FXCIPHER_RC4 1
@@ -30,7 +30,7 @@ class IPDF_SecurityHandler {
int& keylen) = 0;
virtual FX_BOOL IsMetadataEncrypted() = 0;
- virtual CPDF_CryptoHandler* CreateCryptoHandler() = 0;
+ virtual IPDF_CryptoHandler* CreateCryptoHandler() = 0;
};
#endif // CORE_INCLUDE_FPDFAPI_IPDF_SECURITY_HANDLER_H_