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

Side by Side Diff: core/src/fpdfapi/fpdf_page/fpdf_page_parser.cpp

Issue 1737593006: Re-land "Replace CPDF_Rect and CPDF_Point with CFX types." (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Ooops. Created 4 years, 10 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
OLDNEW
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
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 CPDF_Rect* pBBox, 119 CFX_FloatRect* 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
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 }
OLDNEW
« no previous file with comments | « core/src/fpdfapi/fpdf_page/fpdf_page_graph_state.cpp ('k') | core/src/fpdfapi/fpdf_parser/fpdf_parser_utility.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698