OLD | NEW |
1 // Copyright 2014 PDFium Authors. All rights reserved. | 1 // Copyright 2014 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 #include "../../../include/fpdfapi/fpdf_page.h" | 7 #include <limits.h> |
8 #include "../../../include/fpdfapi/fpdf_module.h" | 8 |
9 #include "../fpdf_page/pageint.h" | 9 #include "../fpdf_page/pageint.h" |
10 #include <limits.h> | 10 #include "core/include/fpdfapi/fpdf_module.h" |
| 11 #include "core/include/fpdfapi/fpdf_page.h" |
| 12 |
11 CPDF_Document::CPDF_Document() : CPDF_IndirectObjects(NULL) { | 13 CPDF_Document::CPDF_Document() : CPDF_IndirectObjects(NULL) { |
12 m_pRootDict = NULL; | 14 m_pRootDict = NULL; |
13 m_pInfoDict = NULL; | 15 m_pInfoDict = NULL; |
14 m_bLinearized = FALSE; | 16 m_bLinearized = FALSE; |
15 m_dwFirstPageNo = 0; | 17 m_dwFirstPageNo = 0; |
16 m_dwFirstPageObjNum = 0; | 18 m_dwFirstPageObjNum = 0; |
17 m_pDocPage = CPDF_ModuleMgr::Get()->GetPageModule()->CreateDocData(this); | 19 m_pDocPage = CPDF_ModuleMgr::Get()->GetPageModule()->CreateDocData(this); |
18 m_pDocRender = CPDF_ModuleMgr::Get()->GetRenderModule()->CreateDocData(this); | 20 m_pDocRender = CPDF_ModuleMgr::Get()->GetRenderModule()->CreateDocData(this); |
19 } | 21 } |
20 void CPDF_Document::CreateNewDoc() { | 22 void CPDF_Document::CreateNewDoc() { |
(...skipping 1118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1139 void FPDFAPI_FlatPageAttr(CPDF_Dictionary* pPageDict, | 1141 void FPDFAPI_FlatPageAttr(CPDF_Dictionary* pPageDict, |
1140 const CFX_ByteStringC& name) { | 1142 const CFX_ByteStringC& name) { |
1141 if (pPageDict->KeyExist(name)) { | 1143 if (pPageDict->KeyExist(name)) { |
1142 return; | 1144 return; |
1143 } | 1145 } |
1144 CPDF_Object* pObj = FPDFAPI_GetPageAttr(pPageDict, name); | 1146 CPDF_Object* pObj = FPDFAPI_GetPageAttr(pPageDict, name); |
1145 if (pObj) { | 1147 if (pObj) { |
1146 pPageDict->SetAt(name, pObj->Clone()); | 1148 pPageDict->SetAt(name, pObj->Clone()); |
1147 } | 1149 } |
1148 } | 1150 } |
OLD | NEW |