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

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

Issue 1612113003: Rename CPDF_PageObjects to CPDF_PageObjectList (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Fix stray file. Created 4 years, 11 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/src/fpdfapi/fpdf_page/fpdf_page.cpp ('k') | core/src/fpdfapi/fpdf_page/pageint.h » ('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 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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 } 107 }
108 } 108 }
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_PageObjects* pObjList, 117 CPDF_PageObjectList* pObjList,
118 CPDF_Dictionary* pResources, 118 CPDF_Dictionary* pResources,
119 CPDF_Rect* 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_pObjectList(pObjList), 127 m_pObjectList(pObjList),
(...skipping 1683 matching lines...) Expand 10 before | Expand all | Expand 10 after
1811 pArray->SetAt(i, new CPDF_Name(fullname)); 1811 pArray->SetAt(i, new CPDF_Name(fullname));
1812 } 1812 }
1813 } else { 1813 } else {
1814 PDF_ReplaceAbbr(pElement); 1814 PDF_ReplaceAbbr(pElement);
1815 } 1815 }
1816 } 1816 }
1817 break; 1817 break;
1818 } 1818 }
1819 } 1819 }
1820 } 1820 }
OLDNEW
« no previous file with comments | « core/src/fpdfapi/fpdf_page/fpdf_page.cpp ('k') | core/src/fpdfapi/fpdf_page/pageint.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698