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

Side by Side Diff: xfa/src/fxfa/src/common/xfa_document.h

Issue 1707893004: Fixup incorrect include guards. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 10 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
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_DOCUMENT_H 7 #ifndef XFA_SRC_FXFA_SRC_COMMON_XFA_DOCUMENT_H_
8 #define _XFA_DOCUMENT_H 8 #define XFA_SRC_FXFA_SRC_COMMON_XFA_DOCUMENT_H_
9 9
10 class CXFA_Document; 10 class CXFA_Document;
11 class CXFA_LayoutItem; 11 class CXFA_LayoutItem;
12 class CXFA_LayoutProcessor; 12 class CXFA_LayoutProcessor;
13 class CXFA_Node; 13 class CXFA_Node;
14 class IXFA_DocLayout; 14 class IXFA_DocLayout;
15 class IXFA_DocParser; 15 class IXFA_DocParser;
16 class IXFA_LayoutPage; 16 class IXFA_LayoutPage;
17 class IXFA_Notify; 17 class IXFA_Notify;
18 class IXFA_ObjFactory; 18 class IXFA_ObjFactory;
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 CScript_EventPseudoModel* m_pScriptEvent; 186 CScript_EventPseudoModel* m_pScriptEvent;
187 CScript_HostPseudoModel* m_pScriptHost; 187 CScript_HostPseudoModel* m_pScriptHost;
188 CScript_LogPseudoModel* m_pScriptLog; 188 CScript_LogPseudoModel* m_pScriptLog;
189 CScript_LayoutPseudoModel* m_pScriptLayout; 189 CScript_LayoutPseudoModel* m_pScriptLayout;
190 CScript_SignaturePseudoModel* m_pScriptSignature; 190 CScript_SignaturePseudoModel* m_pScriptSignature;
191 CXFA_NodeSet m_rgPurgeNodes; 191 CXFA_NodeSet m_rgPurgeNodes;
192 XFA_VERSION m_eCurVersionMode; 192 XFA_VERSION m_eCurVersionMode;
193 FX_DWORD m_dwDocFlags; 193 FX_DWORD m_dwDocFlags;
194 friend class CXFA_SimpleParser; 194 friend class CXFA_SimpleParser;
195 }; 195 };
196 #endif 196
197 #endif // XFA_SRC_FXFA_SRC_COMMON_XFA_DOCUMENT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698