diff options
author | Tom Sepez <tsepez@chromium.org> | 2016-01-19 15:18:13 -0800 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2016-01-19 15:18:13 -0800 |
commit | 4a2aa1a90d89b88036b0bff432ffefa183ea80d0 (patch) | |
tree | bd4f086e4a2371dd5bb283cd8df6ae7f01bb6dac /xfa/src/fdp/include/fde_xml.h | |
parent | 833d705688d21402357ef1ab40f4706dbadfb79a (diff) | |
download | pdfium-4a2aa1a90d89b88036b0bff432ffefa183ea80d0.tar.xz |
Resolve fde_xml.h header collisionchromium/2631chromium/2630chromium/2629chromium/2628chromium/2627chromium/2626
R=thestig@chromium.org
Review URL: https://codereview.chromium.org/1581823002 .
Diffstat (limited to 'xfa/src/fdp/include/fde_xml.h')
-rw-r--r-- | xfa/src/fdp/include/fde_xml.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/xfa/src/fdp/include/fde_xml.h b/xfa/src/fdp/include/fde_xml.h index 9fc80b789d..85793aae19 100644 --- a/xfa/src/fdp/include/fde_xml.h +++ b/xfa/src/fdp/include/fde_xml.h @@ -4,8 +4,9 @@ // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
-#ifndef _FDE_XML
-#define _FDE_XML
+#ifndef FDE_XML_H_
+#define FDE_XML_H_
+
class IFDE_XMLNode;
class IFDE_XMLInstruction;
class IFDE_XMLDeclaration;
@@ -228,4 +229,5 @@ class IFDE_XMLSyntaxParser { virtual void GetTextData(CFX_WideString& wsText) const = 0;
virtual void GetTargetData(CFX_WideString& wsData) const = 0;
};
-#endif
+
+#endif // FDE_XML_H_
|