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

Side by Side Diff: core/include/fpdfapi/fpdf_pageobj.h

Issue 1172793002: Merge to XFA: Use stdint.h types throughout PDFium. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@xfa
Patch Set: Created 5 years, 6 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/include/fpdfapi/fpdf_objects.h ('k') | core/include/fpdfapi/fpdf_parser.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 #ifndef CORE_INCLUDE_FPDFAPI_FPDF_PAGEOBJ_H_ 7 #ifndef CORE_INCLUDE_FPDFAPI_FPDF_PAGEOBJ_H_
8 #define CORE_INCLUDE_FPDFAPI_FPDF_PAGEOBJ_H_ 8 #define CORE_INCLUDE_FPDFAPI_FPDF_PAGEOBJ_H_
9 9
10 #include "../fxge/fx_ge.h" 10 #include "../fxge/fx_ge.h"
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 107
108 ~CPDF_ClipPathData(); 108 ~CPDF_ClipPathData();
109 109
110 void SetCount(int path_count, int text_count) ; 110 void SetCount(int path_count, int text_count) ;
111 public: 111 public:
112 112
113 int m_PathCount; 113 int m_PathCount;
114 114
115 CPDF_Path* m_pPathList; 115 CPDF_Path* m_pPathList;
116 116
117 FX_BYTE*» » » m_pTypeList; 117 uint8_t*» » » m_pTypeList;
118 118
119 int m_TextCount; 119 int m_TextCount;
120 120
121 CPDF_TextObject** m_pTextList; 121 CPDF_TextObject** m_pTextList;
122 }; 122 };
123 class CPDF_ClipPath : public CFX_CountRef<CPDF_ClipPathData> 123 class CPDF_ClipPath : public CFX_CountRef<CPDF_ClipPathData>
124 { 124 {
125 public: 125 public:
126 126
127 FX_DWORD GetPathCount() const 127 FX_DWORD GetPathCount() const
(...skipping 582 matching lines...) Expand 10 before | Expand all | Expand 10 after
710 710
711 CFX_ArrayTemplate<CFX_AffineMatrix> m_Matrices; 711 CFX_ArrayTemplate<CFX_AffineMatrix> m_Matrices;
712 712
713 void AddMatrix(CFX_AffineMatrix& matrix); 713 void AddMatrix(CFX_AffineMatrix& matrix);
714 protected: 714 protected:
715 virtual void Transform(const CFX_AffineMatrix& matrix) {} 715 virtual void Transform(const CFX_AffineMatrix& matrix) {}
716 virtual void CopyData(const CPDF_PageObject* pSrcObjet) {} 716 virtual void CopyData(const CPDF_PageObject* pSrcObjet) {}
717 }; 717 };
718 718
719 #endif // CORE_INCLUDE_FPDFAPI_FPDF_PAGEOBJ_H_ 719 #endif // CORE_INCLUDE_FPDFAPI_FPDF_PAGEOBJ_H_
OLDNEW
« no previous file with comments | « core/include/fpdfapi/fpdf_objects.h ('k') | core/include/fpdfapi/fpdf_parser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698