Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(28)

Side by Side Diff: core/fpdfapi/fpdf_parser/include/cpdf_parser.h

Issue 2005653002: Distinguish between user and owner passwords. (Closed) Base URL: https://pdfium.googlesource.com/pdfium@master
Patch Set: rebase Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « core/fpdfapi/fpdf_parser/include/cpdf_document.h ('k') | fpdfsdk/fpdfview.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 PDFium Authors. All rights reserved. 1 // Copyright 2016 PDFium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6 6
7 #ifndef CORE_FPDFAPI_FPDF_PARSER_INCLUDE_CPDF_PARSER_H_ 7 #ifndef CORE_FPDFAPI_FPDF_PARSER_INCLUDE_CPDF_PARSER_H_
8 #define CORE_FPDFAPI_FPDF_PARSER_INCLUDE_CPDF_PARSER_H_ 8 #define CORE_FPDFAPI_FPDF_PARSER_INCLUDE_CPDF_PARSER_H_
9 9
10 #include <map> 10 #include <map>
(...skipping 20 matching lines...) Expand all
31 FILE_ERROR, 31 FILE_ERROR,
32 FORMAT_ERROR, 32 FORMAT_ERROR,
33 PASSWORD_ERROR, 33 PASSWORD_ERROR,
34 HANDLER_ERROR 34 HANDLER_ERROR
35 }; 35 };
36 36
37 CPDF_Parser(); 37 CPDF_Parser();
38 ~CPDF_Parser(); 38 ~CPDF_Parser();
39 39
40 Error StartParse(IFX_FileRead* pFile); 40 Error StartParse(IFX_FileRead* pFile);
41 uint32_t GetPermissions(FX_BOOL bCheckRevision = FALSE); 41 uint32_t GetPermissions() const;
42 42
43 void SetPassword(const FX_CHAR* password) { m_Password = password; } 43 void SetPassword(const FX_CHAR* password) { m_Password = password; }
44 CFX_ByteString GetPassword() { return m_Password; } 44 CFX_ByteString GetPassword() { return m_Password; }
45 CPDF_Dictionary* GetTrailer() const { return m_pTrailer; } 45 CPDF_Dictionary* GetTrailer() const { return m_pTrailer; }
46 FX_FILESIZE GetLastXRefOffset() const { return m_LastXRefOffset; } 46 FX_FILESIZE GetLastXRefOffset() const { return m_LastXRefOffset; }
47 CPDF_Document* GetDocument() const { return m_pDocument; } 47 CPDF_Document* GetDocument() const { return m_pDocument; }
48 48
49 uint32_t GetRootObjNum(); 49 uint32_t GetRootObjNum();
50 uint32_t GetInfoObjNum(); 50 uint32_t GetInfoObjNum();
51 CPDF_Array* GetIDArray(); 51 CPDF_Array* GetIDArray();
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 kPostObjNum, 167 kPostObjNum,
168 kGenNum, 168 kGenNum,
169 kPostGenNum, 169 kPostGenNum,
170 kTrailer, 170 kTrailer,
171 kBeginObj, 171 kBeginObj,
172 kEndObj 172 kEndObj
173 }; 173 };
174 }; 174 };
175 175
176 #endif // CORE_FPDFAPI_FPDF_PARSER_INCLUDE_CPDF_PARSER_H_ 176 #endif // CORE_FPDFAPI_FPDF_PARSER_INCLUDE_CPDF_PARSER_H_
OLDNEW
« no previous file with comments | « core/fpdfapi/fpdf_parser/include/cpdf_document.h ('k') | fpdfsdk/fpdfview.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698