diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2016-02-18 15:02:55 -0500 |
---|---|---|
committer | Dan Sinclair <dsinclair@chromium.org> | 2016-02-18 15:02:55 -0500 |
commit | c7cd809fccd7c5f90c8a2db7ddec7289f9630f53 (patch) | |
tree | 8ed5c89990a552395ac3943330eb6776dc1f41e5 /fpdfsdk | |
parent | c5ac0202004cd38071a9f6f0d7f3e5d8669ccfbb (diff) | |
download | pdfium-c7cd809fccd7c5f90c8a2db7ddec7289f9630f53.tar.xz |
Fixup incorrect include guards.
This CL updates include guards throughout the code base to be in the
chromium style.
BUG=pdfium:65
R=tsepez@chromium.org
Review URL: https://codereview.chromium.org/1707893004 .
Diffstat (limited to 'fpdfsdk')
-rw-r--r-- | fpdfsdk/include/fpdfxfa/fpdfxfa_app.h | 6 | ||||
-rw-r--r-- | fpdfsdk/include/fpdfxfa/fpdfxfa_doc.h | 6 | ||||
-rw-r--r-- | fpdfsdk/include/fpdfxfa/fpdfxfa_page.h | 6 |
3 files changed, 9 insertions, 9 deletions
diff --git a/fpdfsdk/include/fpdfxfa/fpdfxfa_app.h b/fpdfsdk/include/fpdfxfa/fpdfxfa_app.h index 5ec6de5644..0956fcfa7e 100644 --- a/fpdfsdk/include/fpdfxfa/fpdfxfa_app.h +++ b/fpdfsdk/include/fpdfxfa/fpdfxfa_app.h @@ -4,8 +4,8 @@ // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com -#ifndef FPDFXFA_APP_H_ -#define FPDFXFA_APP_H_ +#ifndef FPDFSDK_INCLUDE_FPDFXFA_FPDFXFA_APP_H_ +#define FPDFSDK_INCLUDE_FPDFXFA_FPDFXFA_APP_H_ #include "xfa/include/fxfa/fxfa.h" @@ -95,4 +95,4 @@ class CPDFXFA_App : public IXFA_AppProvider { bool m_bOwnedRuntime; }; -#endif // FPDFXFA_APP_H_ +#endif // FPDFSDK_INCLUDE_FPDFXFA_FPDFXFA_APP_H_ diff --git a/fpdfsdk/include/fpdfxfa/fpdfxfa_doc.h b/fpdfsdk/include/fpdfxfa/fpdfxfa_doc.h index eb064d2682..fb976a256f 100644 --- a/fpdfsdk/include/fpdfxfa/fpdfxfa_doc.h +++ b/fpdfsdk/include/fpdfxfa/fpdfxfa_doc.h @@ -4,8 +4,8 @@ // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com -#ifndef FPDFXFA_DOC_H_ -#define FPDFXFA_DOC_H_ +#ifndef FPDFSDK_INCLUDE_FPDFXFA_FPDFXFA_DOC_H_ +#define FPDFSDK_INCLUDE_FPDFXFA_FPDFXFA_DOC_H_ #include <vector> @@ -227,4 +227,4 @@ class CPDFXFA_Document : public IXFA_DocProvider { CFX_ArrayTemplate<CPDFXFA_Page*> m_XFAPageList; }; -#endif // FPDFXFA_DOC_H_ +#endif // FPDFSDK_INCLUDE_FPDFXFA_FPDFXFA_DOC_H_ diff --git a/fpdfsdk/include/fpdfxfa/fpdfxfa_page.h b/fpdfsdk/include/fpdfxfa/fpdfxfa_page.h index 814599cc7e..2354a34b18 100644 --- a/fpdfsdk/include/fpdfxfa/fpdfxfa_page.h +++ b/fpdfsdk/include/fpdfxfa/fpdfxfa_page.h @@ -4,8 +4,8 @@ // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com -#ifndef _FPDFXFA_PAGEVIEW_H_ -#define _FPDFXFA_PAGEVIEW_H_ +#ifndef FPDFSDK_INCLUDE_FPDFXFA_FPDFXFA_PAGEVIEW_H_ +#define FPDFSDK_INCLUDE_FPDFXFA_FPDFXFA_PAGEVIEW_H_ class CPDFXFA_Page { public: @@ -63,4 +63,4 @@ class CPDFXFA_Page { int m_iRef; }; -#endif +#endif // FPDFSDK_INCLUDE_FPDFXFA_FPDFXFA_PAGEVIEW_H_ |