| 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 "core/src/fpdfapi/fpdf_page/pageint.h" | 7 #include "core/src/fpdfapi/fpdf_page/pageint.h" |
| 8 | 8 |
| 9 #include "core/include/fpdfapi/fpdf_module.h" | 9 #include "core/include/fpdfapi/fpdf_module.h" |
| 10 #include "core/include/fpdfapi/fpdf_page.h" | 10 #include "core/include/fpdfapi/fpdf_page.h" |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 return false; | 109 return false; |
| 110 } | 110 } |
| 111 | 111 |
| 112 CPDF_StreamContentParser::CPDF_StreamContentParser( | 112 CPDF_StreamContentParser::CPDF_StreamContentParser( |
| 113 CPDF_Document* pDocument, | 113 CPDF_Document* pDocument, |
| 114 CPDF_Dictionary* pPageResources, | 114 CPDF_Dictionary* pPageResources, |
| 115 CPDF_Dictionary* pParentResources, | 115 CPDF_Dictionary* pParentResources, |
| 116 CFX_Matrix* pmtContentToUser, | 116 CFX_Matrix* pmtContentToUser, |
| 117 CPDF_PageObjectHolder* pObjHolder, | 117 CPDF_PageObjectHolder* pObjHolder, |
| 118 CPDF_Dictionary* pResources, | 118 CPDF_Dictionary* pResources, |
| 119 CFX_FloatRect* pBBox, | 119 CPDF_Rect* pBBox, |
| 120 CPDF_ParseOptions* pOptions, | 120 CPDF_ParseOptions* pOptions, |
| 121 CPDF_AllStates* pStates, | 121 CPDF_AllStates* pStates, |
| 122 int level) | 122 int level) |
| 123 : m_pDocument(pDocument), | 123 : m_pDocument(pDocument), |
| 124 m_pPageResources(pPageResources), | 124 m_pPageResources(pPageResources), |
| 125 m_pParentResources(pParentResources), | 125 m_pParentResources(pParentResources), |
| 126 m_pResources(pResources), | 126 m_pResources(pResources), |
| 127 m_pObjectHolder(pObjHolder), | 127 m_pObjectHolder(pObjHolder), |
| 128 m_Level(level), | 128 m_Level(level), |
| 129 m_ParamStartPos(0), | 129 m_ParamStartPos(0), |
| (...skipping 1671 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1801 } else { | 1801 } else { |
| 1802 PDF_ReplaceAbbr(pElement); | 1802 PDF_ReplaceAbbr(pElement); |
| 1803 } | 1803 } |
| 1804 } | 1804 } |
| 1805 break; | 1805 break; |
| 1806 } | 1806 } |
| 1807 default: | 1807 default: |
| 1808 break; | 1808 break; |
| 1809 } | 1809 } |
| 1810 } | 1810 } |
| OLD | NEW |