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

Side by Side Diff: core/src/reflow/reflowedpage.h

Issue 1160443004: Fix ALL the include guards. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Full style-guide compliance. 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/src/reflow/layoutprovider_taggedpdf.h ('k') | core/src/reflow/reflowedtextpage.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 _REFLOWED_PAGE_H 7 #ifndef CORE_SRC_REFLOW_REFLOWEDPAGE_H_
8 #define _REFLOWED_PAGE_H 8 #define CORE_SRC_REFLOW_REFLOWEDPAGE_H_
9
9 #include "../../include/reflow/reflowengine.h" 10 #include "../../include/reflow/reflowengine.h"
11
10 #define GET_SIGNED(a) ( (a)>0 ? a/a : (a==0 ? 0 : -a/a) ) 12 #define GET_SIGNED(a) ( (a)>0 ? a/a : (a==0 ? 0 : -a/a) )
11 class CRF_Data; 13 class CRF_Data;
12 class CRF_LineData; 14 class CRF_LineData;
13 class CRF_CharData; 15 class CRF_CharData;
14 class CRF_PathData; 16 class CRF_PathData;
15 class CRF_ImageData; 17 class CRF_ImageData;
16 class CRF_Table; 18 class CRF_Table;
17 class CRF_AttrOperation; 19 class CRF_AttrOperation;
18 class CRF_OperationDate; 20 class CRF_OperationDate;
19 class CPDF_ReflowedPage; 21 class CPDF_ReflowedPage;
(...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after
361 } 363 }
362 ~CRF_PathData() {}; 364 ~CRF_PathData() {};
363 FX_BOOL m_bDecoration; 365 FX_BOOL m_bDecoration;
364 CPDF_Path m_pPathData; 366 CPDF_Path m_pPathData;
365 CFX_AffineMatrix m_pPath2Device; 367 CFX_AffineMatrix m_pPath2Device;
366 CPDF_GraphState m_pGraphState; 368 CPDF_GraphState m_pGraphState;
367 FX_ARGB m_fill_argb; 369 FX_ARGB m_fill_argb;
368 FX_ARGB m_stroke_argb; 370 FX_ARGB m_stroke_argb;
369 int m_fill_mode; 371 int m_fill_mode;
370 }; 372 };
371 #endif 373
374 #endif // CORE_SRC_REFLOW_REFLOWEDPAGE_H_
OLDNEW
« no previous file with comments | « core/src/reflow/layoutprovider_taggedpdf.h ('k') | core/src/reflow/reflowedtextpage.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698