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

Side by Side Diff: xfa/fxbarcode/oned/BC_OneDimWriter.h

Issue 2377393002: Move core/fxge/include to core/fxge (Closed)
Patch Set: Rebase to master Created 4 years, 2 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 | « xfa/fxbarcode/cbc_upca.h ('k') | xfa/fxbarcode/oned/BC_OneDimWriter.cpp » ('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_FXBARCODE_ONED_BC_ONEDIMWRITER_H_ 7 #ifndef XFA_FXBARCODE_ONED_BC_ONEDIMWRITER_H_
8 #define XFA_FXBARCODE_ONED_BC_ONEDIMWRITER_H_ 8 #define XFA_FXBARCODE_ONED_BC_ONEDIMWRITER_H_
9 9
10 #include <memory> 10 #include <memory>
11 11
12 #include "core/fxge/include/cfx_renderdevice.h" 12 #include "core/fxge/cfx_renderdevice.h"
13 #include "xfa/fxbarcode/BC_Writer.h" 13 #include "xfa/fxbarcode/BC_Writer.h"
14 #include "xfa/fxbarcode/include/BC_Library.h" 14 #include "xfa/fxbarcode/include/BC_Library.h"
15 15
16 class CBC_CommonBitMatrix; 16 class CBC_CommonBitMatrix;
17 class CFX_Font; 17 class CFX_Font;
18 class CFX_RenderDevice; 18 class CFX_RenderDevice;
19 19
20 class CBC_OneDimWriter : public CBC_Writer { 20 class CBC_OneDimWriter : public CBC_Writer {
21 public: 21 public:
22 CBC_OneDimWriter(); 22 CBC_OneDimWriter();
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 int32_t m_iContentLen; 109 int32_t m_iContentLen;
110 FX_BOOL m_bLeftPadding; 110 FX_BOOL m_bLeftPadding;
111 FX_BOOL m_bRightPadding; 111 FX_BOOL m_bRightPadding;
112 std::unique_ptr<CBC_CommonBitMatrix> m_output; 112 std::unique_ptr<CBC_CommonBitMatrix> m_output;
113 int32_t m_barWidth; 113 int32_t m_barWidth;
114 int32_t m_multiple; 114 int32_t m_multiple;
115 FX_FLOAT m_outputHScale; 115 FX_FLOAT m_outputHScale;
116 }; 116 };
117 117
118 #endif // XFA_FXBARCODE_ONED_BC_ONEDIMWRITER_H_ 118 #endif // XFA_FXBARCODE_ONED_BC_ONEDIMWRITER_H_
OLDNEW
« no previous file with comments | « xfa/fxbarcode/cbc_upca.h ('k') | xfa/fxbarcode/oned/BC_OneDimWriter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698