diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2016-02-22 11:56:05 -0500 |
---|---|---|
committer | Dan Sinclair <dsinclair@chromium.org> | 2016-02-22 11:56:05 -0500 |
commit | 22d6607d104d4cb8c5263c4d307b4ba1e4ff959e (patch) | |
tree | 5a3567227e10a988484c329b7fdf315efb3c988a /fpdfsdk | |
parent | 33364e2d6f9549d7964611097c663264548a5d68 (diff) | |
download | pdfium-22d6607d104d4cb8c5263c4d307b4ba1e4ff959e.tar.xz |
Fixing include guards, and presubmit.
This update fixes all include guards so cpplint build/header_guard completes
without error.
A presubmit check is added to make sure the guards stay clean.
BUG=pdfium:65
R=tsepez@chromium.org
Review URL: https://codereview.chromium.org/1719083002 .
Diffstat (limited to 'fpdfsdk')
-rw-r--r-- | fpdfsdk/include/fpdfxfa/fpdfxfa_page.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fpdfsdk/include/fpdfxfa/fpdfxfa_page.h b/fpdfsdk/include/fpdfxfa/fpdfxfa_page.h index 2354a34b18..2e3c51cbd0 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 FPDFSDK_INCLUDE_FPDFXFA_FPDFXFA_PAGEVIEW_H_ -#define FPDFSDK_INCLUDE_FPDFXFA_FPDFXFA_PAGEVIEW_H_ +#ifndef FPDFSDK_INCLUDE_FPDFXFA_FPDFXFA_PAGE_H_ +#define FPDFSDK_INCLUDE_FPDFXFA_FPDFXFA_PAGE_H_ class CPDFXFA_Page { public: @@ -63,4 +63,4 @@ class CPDFXFA_Page { int m_iRef; }; -#endif // FPDFSDK_INCLUDE_FPDFXFA_FPDFXFA_PAGEVIEW_H_ +#endif // FPDFSDK_INCLUDE_FPDFXFA_FPDFXFA_PAGE_H_ |