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

Side by Side Diff: core/fpdfapi/parser/cpdf_linearized.h

Issue 2466023002: Unify some code (Closed)
Patch Set: Fix review issues. Created 4 years, 1 month 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
OLDNEW
(Empty)
1 // Copyright 2016 PDFium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6
7 #ifndef CORE_FPDFAPI_PARSER_CPDF_LINEARIZED_H_
8 #define CORE_FPDFAPI_PARSER_CPDF_LINEARIZED_H_
9
10 #include <memory>
11
12 #include "core/fxcrt/fx_memory.h"
13 #include "core/fxcrt/fx_stream.h"
14
15 class CPDF_Dictionary;
16 class CPDF_Object;
17
18 class CPDF_Linearized {
19 public:
20 ~CPDF_Linearized();
21 static std::unique_ptr<CPDF_Linearized> CreateForObject(
22 std::unique_ptr<CPDF_Object, ReleaseDeleter<CPDF_Object>> pObj);
23
24 FX_FILESIZE GetFileSize() const { return m_szFileSize; }
Lei Zhang 2016/11/04 01:10:15 Can you briefly document these getters, and mentio
snake 2016/11/04 22:39:14 Done.
25 uint32_t GetFirstPageNo() const { return m_dwFirstPageNo; }
26 FX_FILESIZE GetLastXRefOffset() const { return m_szLastXRefOffset; }
27 uint32_t GetPageCount() const { return m_PageCount; }
28 FX_FILESIZE GetFirstPageEndOffset() const { return m_szFirstPageEndOffset; }
29 uint32_t GetFirstPageObjNum() const { return m_FirstPageObjNum; }
30
31 bool HasHintTable() const;
32 FX_FILESIZE GetHintStart() const { return m_szHintStart; }
33 FX_FILESIZE GetHintLength() const { return m_szHintLength; }
34
35 private:
36 explicit CPDF_Linearized(const CPDF_Dictionary* pDict);
37 bool IsValid() const;
38
39 FX_FILESIZE m_szFileSize = 0;
40 uint32_t m_dwFirstPageNo = 0;
41 FX_FILESIZE m_szLastXRefOffset = 0;
42 uint32_t m_PageCount = 0;
43 FX_FILESIZE m_szFirstPageEndOffset = 0;
44 uint32_t m_FirstPageObjNum = 0;
45 FX_FILESIZE m_szHintStart = 0;
46 FX_FILESIZE m_szHintLength = 0;
47 };
48
49 #endif // CORE_FPDFAPI_PARSER_CPDF_LINEARIZED_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698