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

Side by Side Diff: xfa/fde/tto/fde_textout.h

Issue 2649563003: Replace CFX_ByteArray with CFX_ArrayTemplate<uint8_t> (Closed)
Patch Set: re-upload Created 3 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/fxcrt/fx_basic.h ('k') | xfa/fde/xml/cfx_saxreader.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 XFA_FDE_TTO_FDE_TEXTOUT_H_ 7 #ifndef XFA_FDE_TTO_FDE_TEXTOUT_H_
8 #define XFA_FDE_TTO_FDE_TEXTOUT_H_ 8 #define XFA_FDE_TTO_FDE_TEXTOUT_H_
9 9
10 #include <memory> 10 #include <memory>
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 CFX_WideString m_wsText; 172 CFX_WideString m_wsText;
173 CFX_RectF m_rtClip; 173 CFX_RectF m_rtClip;
174 CFX_RectF m_rtLogicClip; 174 CFX_RectF m_rtLogicClip;
175 CFX_Matrix m_Matrix; 175 CFX_Matrix m_Matrix;
176 CFDE_TTOLineArray m_ttoLines; 176 CFDE_TTOLineArray m_ttoLines;
177 int32_t m_iCurLine; 177 int32_t m_iCurLine;
178 int32_t m_iCurPiece; 178 int32_t m_iCurPiece;
179 int32_t m_iTotalLines; 179 int32_t m_iTotalLines;
180 std::vector<FXTEXT_CHARPOS> m_CharPos; 180 std::vector<FXTEXT_CHARPOS> m_CharPos;
181 std::unique_ptr<CFDE_RenderDevice> m_pRenderDevice; 181 std::unique_ptr<CFDE_RenderDevice> m_pRenderDevice;
182 CFX_Int32Array m_hotKeys; 182 CFX_ArrayTemplate<int32_t> m_hotKeys;
183 CFX_RectFArray m_rectArray; 183 CFX_RectFArray m_rectArray;
184 }; 184 };
185 185
186 #endif // XFA_FDE_TTO_FDE_TEXTOUT_H_ 186 #endif // XFA_FDE_TTO_FDE_TEXTOUT_H_
OLDNEW
« no previous file with comments | « core/fxcrt/fx_basic.h ('k') | xfa/fde/xml/cfx_saxreader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698