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 /xfa/src/fwl | |
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 'xfa/src/fwl')
25 files changed, 110 insertions, 75 deletions
diff --git a/xfa/src/fwl/src/basewidget/include/fwl_barcodeimp.h b/xfa/src/fwl/src/basewidget/include/fwl_barcodeimp.h index 55f5219307..53749f4653 100644 --- a/xfa/src/fwl/src/basewidget/include/fwl_barcodeimp.h +++ b/xfa/src/fwl/src/basewidget/include/fwl_barcodeimp.h @@ -4,8 +4,9 @@ // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com -#ifndef _FWL_BARCODE_IMP_H -#define _FWL_BARCODE_IMP_H +#ifndef XFA_SRC_FWL_SRC_BASEWIDGET_INCLUDE_FWL_BARCODEIMP_H_ +#define XFA_SRC_FWL_SRC_BASEWIDGET_INCLUDE_FWL_BARCODEIMP_H_ + class CFWL_WidgetImp; class CFWL_WidgetImpProperties; class CFWL_WidgetImpDelegate; @@ -48,4 +49,5 @@ class CFWL_BarcodeImpDelegate : public CFWL_EditImpDelegate { CFWL_BarcodeImpDelegate(CFWL_BarcodeImp* pOwner); FWL_ERR OnProcessEvent(CFWL_Event* pEvent) override; }; -#endif + +#endif // XFA_SRC_FWL_SRC_BASEWIDGET_INCLUDE_FWL_BARCODEIMP_H_ diff --git a/xfa/src/fwl/src/basewidget/include/fwl_caretimp.h b/xfa/src/fwl/src/basewidget/include/fwl_caretimp.h index e26baf3685..ffbcfc0db9 100644 --- a/xfa/src/fwl/src/basewidget/include/fwl_caretimp.h +++ b/xfa/src/fwl/src/basewidget/include/fwl_caretimp.h @@ -4,8 +4,8 @@ // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com -#ifndef _FWL_CARET_IMP_H -#define _FWL_CARET_IMP_H +#ifndef XFA_SRC_FWL_SRC_BASEWIDGET_INCLUDE_FWL_CARETIMP_H +#define XFA_SRC_FWL_SRC_BASEWIDGET_INCLUDE_FWL_CARETIMP_H #include "xfa/include/fwl/core/fwl_timer.h" @@ -64,4 +64,5 @@ class CFWL_CaretImpDelegate : public CFWL_WidgetImpDelegate { protected: CFWL_CaretImp* m_pOwner; }; -#endif + +#endif // XFA_SRC_FWL_SRC_BASEWIDGET_INCLUDE_FWL_CARETIMP_H diff --git a/xfa/src/fwl/src/basewidget/include/fwl_checkboximp.h b/xfa/src/fwl/src/basewidget/include/fwl_checkboximp.h index 10af174068..eb32380fba 100644 --- a/xfa/src/fwl/src/basewidget/include/fwl_checkboximp.h +++ b/xfa/src/fwl/src/basewidget/include/fwl_checkboximp.h @@ -4,8 +4,9 @@ // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com -#ifndef _FWL_CHECKBOX_IMP_H -#define _FWL_CHECKBOX_IMP_H +#ifndef XFA_SRC_FWL_SRC_BASEWIDGET_INCLUDE_FWL_CHECKBOXIMP_H_ +#define XFA_SRC_FWL_SRC_BASEWIDGET_INCLUDE_FWL_CHECKBOXIMP_H_ + class CFWL_WidgetImp; class CFWL_WidgetImpProperties; class CFWL_WidgetImpDelegate; @@ -59,4 +60,5 @@ class CFWL_CheckBoxImpDelegate : public CFWL_WidgetImpDelegate { void OnKeyDown(CFWL_MsgKey* pMsg); CFWL_CheckBoxImp* m_pOwner; }; -#endif + +#endif // XFA_SRC_FWL_SRC_BASEWIDGET_INCLUDE_FWL_CHECKBOXIMP_H_ diff --git a/xfa/src/fwl/src/basewidget/include/fwl_comboboximp.h b/xfa/src/fwl/src/basewidget/include/fwl_comboboximp.h index 86b9348bcd..68514262a1 100644 --- a/xfa/src/fwl/src/basewidget/include/fwl_comboboximp.h +++ b/xfa/src/fwl/src/basewidget/include/fwl_comboboximp.h @@ -4,8 +4,8 @@ // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com -#ifndef _FWL_COMBOBOX_IMP_H -#define _FWL_COMBOBOX_IMP_H +#ifndef XFA_SRC_FWL_SRC_BASEWIDGET_INCLUDE_FWL_COMBOBOXIMP_H_ +#define XFA_SRC_FWL_SRC_BASEWIDGET_INCLUDE_FWL_COMBOBOXIMP_H_ #include <memory> @@ -233,4 +233,5 @@ class CFWL_ComboProxyImpDelegate : public CFWL_WidgetImpDelegate { IFWL_Form* m_pForm; CFWL_ComboBoxImp* m_pComboBox; }; -#endif + +#endif // XFA_SRC_FWL_SRC_BASEWIDGET_INCLUDE_FWL_COMBOBOXIMP_H_ diff --git a/xfa/src/fwl/src/basewidget/include/fwl_datetimepickerimp.h b/xfa/src/fwl/src/basewidget/include/fwl_datetimepickerimp.h index 91411fca29..148b48a25d 100644 --- a/xfa/src/fwl/src/basewidget/include/fwl_datetimepickerimp.h +++ b/xfa/src/fwl/src/basewidget/include/fwl_datetimepickerimp.h @@ -4,8 +4,8 @@ // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com -#ifndef _FWL_DATETIMEPICKER_IMP_H -#define _FWL_DATETIMEPICKER_IMP_H +#ifndef XFA_SRC_FWL_SRC_BASEWIDGET_INCLUDE_FWL_DATETIMEPICKERIMP_H_ +#define XFA_SRC_FWL_SRC_BASEWIDGET_INCLUDE_FWL_DATETIMEPICKERIMP_H_ #include <memory> @@ -228,4 +228,5 @@ class CFWL_DateTimePickerImpDelegate : public CFWL_WidgetImpDelegate { private: void DisForm_OnFocusChanged(CFWL_Message* pMsg, FX_BOOL bSet = TRUE); }; -#endif + +#endif // XFA_SRC_FWL_SRC_BASEWIDGET_INCLUDE_FWL_DATETIMEPICKERIMP_H_ diff --git a/xfa/src/fwl/src/basewidget/include/fwl_editimp.h b/xfa/src/fwl/src/basewidget/include/fwl_editimp.h index d7e736106e..8961954d77 100644 --- a/xfa/src/fwl/src/basewidget/include/fwl_editimp.h +++ b/xfa/src/fwl/src/basewidget/include/fwl_editimp.h @@ -4,8 +4,8 @@ // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com -#ifndef FWL_EDITIMP_H_ -#define FWL_EDITIMP_H_ +#ifndef XFA_SRC_FWL_BASEWIDGET_INCLUDE_FWL_EDITIMP_H_ +#define XFA_SRC_FWL_BASEWIDGET_INCLUDE_FWL_EDITIMP_H_ #include <memory> #include <vector> @@ -207,4 +207,4 @@ class CFWL_EditImpDelegate : public CFWL_WidgetImpDelegate { CFWL_EditImp* m_pOwner; }; -#endif // FWL_EDITIMP_H_ +#endif // XFA_SRC_FWL_BASEWIDGET_INCLUDE_FWL_EDITIMP_H_ diff --git a/xfa/src/fwl/src/basewidget/include/fwl_formproxyimp.h b/xfa/src/fwl/src/basewidget/include/fwl_formproxyimp.h index 97468f11de..1921bd7540 100644 --- a/xfa/src/fwl/src/basewidget/include/fwl_formproxyimp.h +++ b/xfa/src/fwl/src/basewidget/include/fwl_formproxyimp.h @@ -4,8 +4,9 @@ // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com -#ifndef _FWL_FORMPROXY_IMP_H -#define _FWL_FORMPROXY_IMP_H +#ifndef XFA_SRC_FWL_BASEWIDGET_INCLUDE_FWL_FORMPROXYIMP_H_ +#define XFA_SRC_FWL_BASEWIDGET_INCLUDE_FWL_FORMPROXYIMP_H_ + class CFWL_WidgetImp; class CFWL_WidgetImpProperties; class CFWL_WidgetImpDelegate; @@ -37,4 +38,5 @@ class CFWL_FormProxyImpDelegate : public CFWL_WidgetImpDelegate { protected: CFWL_FormProxyImp* m_pOwner; }; -#endif + +#endif // XFA_SRC_FWL_BASEWIDGET_INCLUDE_FWL_FORMPROXYIMP_H_ diff --git a/xfa/src/fwl/src/basewidget/include/fwl_listboximp.h b/xfa/src/fwl/src/basewidget/include/fwl_listboximp.h index 0745619df8..2f91cbcbcb 100644 --- a/xfa/src/fwl/src/basewidget/include/fwl_listboximp.h +++ b/xfa/src/fwl/src/basewidget/include/fwl_listboximp.h @@ -4,8 +4,8 @@ // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com -#ifndef _FWL_LISTBOX_IMP_H -#define _FWL_LISTBOX_IMP_H +#ifndef XFA_SRC_FWL_BASEWIDGET_INCLUDE_FWL_LISTBOXIMP_H_ +#define XFA_SRC_FWL_BASEWIDGET_INCLUDE_FWL_LISTBOXIMP_H_ #include <memory> @@ -116,4 +116,5 @@ class CFWL_ListBoxImpDelegate : public CFWL_WidgetImpDelegate { void DispatchSelChangedEv(); CFWL_ListBoxImp* m_pOwner; }; -#endif + +#endif // XFA_SRC_FWL_BASEWIDGET_INCLUDE_FWL_LISTBOXIMP_H_ diff --git a/xfa/src/fwl/src/basewidget/include/fwl_monthcalendarimp.h b/xfa/src/fwl/src/basewidget/include/fwl_monthcalendarimp.h index f39ca82e37..fa7a73ff3e 100644 --- a/xfa/src/fwl/src/basewidget/include/fwl_monthcalendarimp.h +++ b/xfa/src/fwl/src/basewidget/include/fwl_monthcalendarimp.h @@ -4,8 +4,9 @@ // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com -#ifndef _FWL_MONTHCALENDAR_IMP_H -#define _FWL_MONTHCALENDAR_IMP_H +#ifndef XFA_SRC_FWL_BASEWIDGET_INCLUDE_FWL_MONTHCALENDARIMP_H_ +#define XFA_SRC_FWL_BASEWIDGET_INCLUDE_FWL_MONTHCALENDARIMP_H_ + class CFWL_WidgetImp; class CFWL_WidgetImpProperties; class CFWL_WidgetImpDelegate; @@ -245,4 +246,5 @@ class CFWL_MonthCalendarImpDelegate : public CFWL_WidgetImpDelegate { void OnMouseLeave(CFWL_MsgMouse* pMsg); CFWL_MonthCalendarImp* m_pOwner; }; -#endif + +#endif // XFA_SRC_FWL_BASEWIDGET_INCLUDE_FWL_MONTHCALENDARIMP_H_ diff --git a/xfa/src/fwl/src/basewidget/include/fwl_pictureboximp.h b/xfa/src/fwl/src/basewidget/include/fwl_pictureboximp.h index f75dba90a0..1df9b8ae01 100644 --- a/xfa/src/fwl/src/basewidget/include/fwl_pictureboximp.h +++ b/xfa/src/fwl/src/basewidget/include/fwl_pictureboximp.h @@ -4,8 +4,9 @@ // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com -#ifndef _FWL_PICTUREBOX_IMP_H -#define _FWL_PICTUREBOX_IMP_H +#ifndef XFA_SRC_FWL_BASEWIDGET_INCLUDE_FWL_PICTUREBOXIMP_H_ +#define XFA_SRC_FWL_BASEWIDGET_INCLUDE_FWL_PICTUREBOXIMP_H_ + class CFWL_WidgetImp; class CFWL_WidgetImpProperties; class CFWL_WidgetImpDelegate; @@ -48,4 +49,5 @@ class CFWL_PictureBoxImpDelegate : public CFWL_WidgetImpDelegate { protected: CFWL_PictureBoxImp* m_pOwner; }; -#endif + +#endif // XFA_SRC_FWL_BASEWIDGET_INCLUDE_FWL_PICTUREBOXIMP_H_ diff --git a/xfa/src/fwl/src/basewidget/include/fwl_pushbuttonimp.h b/xfa/src/fwl/src/basewidget/include/fwl_pushbuttonimp.h index 608402e7be..669bb17026 100644 --- a/xfa/src/fwl/src/basewidget/include/fwl_pushbuttonimp.h +++ b/xfa/src/fwl/src/basewidget/include/fwl_pushbuttonimp.h @@ -4,8 +4,9 @@ // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com -#ifndef _FWL_PUSHBUTTON_IMP_H -#define _FWL_PUSHBUTTON_IMP_H +#ifndef XFA_SRC_FWL_BASEWIDGET_INCLUDE_FWL_PUSHBUTTONIMP_H_ +#define XFA_SRC_FWL_BASEWIDGET_INCLUDE_FWL_PUSHBUTTONIMP_H_ + class CFWL_WidgetImp; class CFWL_WidgetImpProperties; class CFWL_WidgetImpDelegate; @@ -60,4 +61,5 @@ class CFWL_PushButtonImpDelegate : public CFWL_WidgetImpDelegate { void OnKeyDown(CFWL_MsgKey* pMsg); CFWL_PushButtonImp* m_pOwner; }; -#endif + +#endif // XFA_SRC_FWL_BASEWIDGET_INCLUDE_FWL_PUSHBUTTONIMP_H_ diff --git a/xfa/src/fwl/src/basewidget/include/fwl_scrollbarimp.h b/xfa/src/fwl/src/basewidget/include/fwl_scrollbarimp.h index 052bac83ce..a48f077325 100644 --- a/xfa/src/fwl/src/basewidget/include/fwl_scrollbarimp.h +++ b/xfa/src/fwl/src/basewidget/include/fwl_scrollbarimp.h @@ -4,8 +4,9 @@ // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com -#ifndef _FWL_SCROLLBAR_IMP_H -#define _FWL_SCROLLBAR_IMP_H +#ifndef XFA_SRC_FWL_BASEWIDGET_INCLUDE_FWL_SCROLLBARIMP_H_ +#define XFA_SRC_FWL_BASEWIDGET_INCLUDE_FWL_SCROLLBARIMP_H_ + class CFWL_WidgetImp; class CFWL_WidgetImpProperties; class CFWL_WidgetImpDelegate; @@ -135,4 +136,5 @@ class CFWL_ScrollBarImpDelegate : public CFWL_WidgetImpDelegate { CFWL_ScrollBarImp* m_pOwner; }; -#endif + +#endif // XFA_SRC_FWL_BASEWIDGET_INCLUDE_FWL_SCROLLBARIMP_H_ diff --git a/xfa/src/fwl/src/basewidget/include/fwl_spinbuttonimp.h b/xfa/src/fwl/src/basewidget/include/fwl_spinbuttonimp.h index 99b99d2dfb..0d8dbbe14a 100644 --- a/xfa/src/fwl/src/basewidget/include/fwl_spinbuttonimp.h +++ b/xfa/src/fwl/src/basewidget/include/fwl_spinbuttonimp.h @@ -4,8 +4,9 @@ // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com -#ifndef _FWL_SPINBUTTON_IMP_H -#define _FWL_SPINBUTTON_IMP_H +#ifndef XFA_SRC_FWL_BASEWIDGET_INCLUDE_FWL_SPINBUTTONIMP_H_ +#define XFA_SRC_FWL_BASEWIDGET_INCLUDE_FWL_SPINBUTTONIMP_H_ + class CFWL_WidgetImp; class CFWL_WidgetImpProperties; class CFWL_WidgetImpDelegate; @@ -65,4 +66,5 @@ class CFWL_SpinButtonImpDelegate : public CFWL_WidgetImpDelegate { void OnKeyDown(CFWL_MsgKey* pMsg); CFWL_SpinButtonImp* m_pOwner; }; -#endif + +#endif // XFA_SRC_FWL_BASEWIDGET_INCLUDE_FWL_SPINBUTTONIMP_H_ diff --git a/xfa/src/fwl/src/basewidget/include/fwl_tooltipctrlimp.h b/xfa/src/fwl/src/basewidget/include/fwl_tooltipctrlimp.h index 2ca464bd2b..25796f60a5 100644 --- a/xfa/src/fwl/src/basewidget/include/fwl_tooltipctrlimp.h +++ b/xfa/src/fwl/src/basewidget/include/fwl_tooltipctrlimp.h @@ -4,8 +4,9 @@ // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com -#ifndef _FWL_ToolTip_IMP_H -#define _FWL_ToolTip_IMP_H +#ifndef XFA_SRC_FWL_BASEWIDGET_INCLUDE_FWL_TOOLTIP_CTRLIMP_H_ +#define XFA_SRC_FWL_BASEWIDGET_INCLUDE_FWL_TOOLTIP_CTRLIMP_H_ + class CFWL_WidgetImp; class CFWL_WidgetImpProperties; class CFWL_WidgetImpDelegate; @@ -80,4 +81,5 @@ class CFWL_ToolTipImpDelegate : public CFWL_WidgetImpDelegate { void OnKeyDown(CFWL_MsgKey* pMsg); CFWL_ToolTipImp* m_pOwner; }; -#endif + +#endif // XFA_SRC_FWL_BASEWIDGET_INCLUDE_FWL_TOOLTIP_CTRLIMP_H_ diff --git a/xfa/src/fwl/src/basewidget/include/fxmath_barcodeimp.h b/xfa/src/fwl/src/basewidget/include/fxmath_barcodeimp.h index 93e4255b5c..ae39b8b3cf 100644 --- a/xfa/src/fwl/src/basewidget/include/fxmath_barcodeimp.h +++ b/xfa/src/fwl/src/basewidget/include/fxmath_barcodeimp.h @@ -4,8 +4,9 @@ // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com -#ifndef _FXMATH_BARCODEIMP_H_ -#define _FXMATH_BARCODEIMP_H_ +#ifndef XFA_SRC_FWL_BASEWIDGET_INCLUDE_FXMATH_BARCODEIMP_H_ +#define XFA_SRC_FWL_BASEWIDGET_INCLUDE_FXMATH_BARCODEIMP_H_ + class CFX_Barcode : public IFX_Barcode { public: CFX_Barcode(); @@ -49,4 +50,5 @@ class CFX_Barcode : public IFX_Barcode { protected: CBC_CodeBase* m_pBCEngine; }; -#endif + +#endif // XFA_SRC_FWL_BASEWIDGET_INCLUDE_FXMATH_BARCODEIMP_H_ diff --git a/xfa/src/fwl/src/core/include/fwl_appimp.h b/xfa/src/fwl/src/core/include/fwl_appimp.h index 627876674f..d30c1b0aab 100644 --- a/xfa/src/fwl/src/core/include/fwl_appimp.h +++ b/xfa/src/fwl/src/core/include/fwl_appimp.h @@ -4,8 +4,8 @@ // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com -#ifndef FWL_APPIMP_H_ -#define FWL_APPIMP_H_ +#ifndef XFA_SRC_FWL_SRC_CORE_INCLUDE_FWL_APPIMP_H_ +#define XFA_SRC_FWL_SRC_CORE_INCLUDE_FWL_APPIMP_H_ #include <memory> @@ -35,4 +35,4 @@ class CFWL_AppImp : public CFWL_NoteThreadImp { IFWL_ThemeProvider* m_pThemeProvider; }; -#endif // FWL_APPIMP_H_ +#endif // XFA_SRC_FWL_SRC_CORE_INCLUDE_FWL_APPIMP_H_ diff --git a/xfa/src/fwl/src/core/include/fwl_contentimp.h b/xfa/src/fwl/src/core/include/fwl_contentimp.h index ce45719f7a..8839f37d30 100644 --- a/xfa/src/fwl/src/core/include/fwl_contentimp.h +++ b/xfa/src/fwl/src/core/include/fwl_contentimp.h @@ -4,8 +4,9 @@ // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com -#ifndef _FWL_CONTENT_IMP_H -#define _FWL_CONTENT_IMP_H +#ifndef XFA_SRC_FWL_SRC_CORE_INCLUDE_FWL_CONTENTIMP_H_ +#define XFA_SRC_FWL_SRC_CORE_INCLUDE_FWL_CONTENTIMP_H_ + class CFWL_WidgetImp; class IFWL_Widget; class CFWL_ContentImp; @@ -29,4 +30,5 @@ class CFWL_ContentImp : public CFWL_WidgetImp { FX_FLOAT m_fHeightMin; FX_FLOAT m_fHeightMax; }; -#endif + +#endif // XFA_SRC_FWL_SRC_CORE_INCLUDE_FWL_CONTENTIMP_H_ diff --git a/xfa/src/fwl/src/core/include/fwl_formimp.h b/xfa/src/fwl/src/core/include/fwl_formimp.h index a4aba47c03..c85bd6cf48 100644 --- a/xfa/src/fwl/src/core/include/fwl_formimp.h +++ b/xfa/src/fwl/src/core/include/fwl_formimp.h @@ -4,8 +4,9 @@ // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com -#ifndef _FWL_FORM_IMP_H -#define _FWL_FORM_IMP_H +#ifndef XFA_SRC_FWL_SRC_CORE_INCLUDE_FWL_FORMIMP_H_ +#define XFA_SRC_FWL_SRC_CORE_INCLUDE_FWL_FORMIMP_H_ + class CFWL_NoteLoop; class CFWL_PanelImp; class CFWL_WidgetImpProperties; @@ -185,4 +186,5 @@ class CFWL_FormImpDelegate : public CFWL_WidgetImpDelegate { void OnClose(CFWL_MsgClose* pMsg); CFWL_FormImp* m_pOwner; }; -#endif + +#endif // XFA_SRC_FWL_SRC_CORE_INCLUDE_FWL_FORMIMP_H_ diff --git a/xfa/src/fwl/src/core/include/fwl_gridimp.h b/xfa/src/fwl/src/core/include/fwl_gridimp.h index 864e90f6fd..2ee22183af 100644 --- a/xfa/src/fwl/src/core/include/fwl_gridimp.h +++ b/xfa/src/fwl/src/core/include/fwl_gridimp.h @@ -4,8 +4,9 @@ // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com -#ifndef _FWL_GRID_IMP_H -#define _FWL_GRID_IMP_H +#ifndef XFA_SRC_FWL_SRC_CORE_INCLUDE_FWL_GRIDIMP_H_ +#define XFA_SRC_FWL_SRC_CORE_INCLUDE_FWL_GRIDIMP_H_ + class CFWL_Content; class IFWL_Widget; class CFWL_GridLength; @@ -189,4 +190,5 @@ class CFWL_GridImpDelegate : public CFWL_WidgetImpDelegate { protected: CFWL_GridImp* m_pOwner; }; -#endif + +#endif // XFA_SRC_FWL_SRC_CORE_INCLUDE_FWL_GRIDIMP_H_ diff --git a/xfa/src/fwl/src/core/include/fwl_noteimp.h b/xfa/src/fwl/src/core/include/fwl_noteimp.h index e28372e593..32a8f91a59 100644 --- a/xfa/src/fwl/src/core/include/fwl_noteimp.h +++ b/xfa/src/fwl/src/core/include/fwl_noteimp.h @@ -4,8 +4,8 @@ // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com -#ifndef _FWL_NOTE_IMP_H -#define _FWL_NOTE_IMP_H +#ifndef XFA_SRC_FWL_SRC_CORE_INCLUDE_FWL_NOTEIMP_H_ +#define XFA_SRC_FWL_SRC_CORE_INCLUDE_FWL_NOTEIMP_H_ #include "xfa/include/fwl/core/fwl_note.h" @@ -155,4 +155,5 @@ class CFWL_ToolTipContainer { private: static CFWL_ToolTipContainer* s_pInstance; }; -#endif + +#endif // XFA_SRC_FWL_SRC_CORE_INCLUDE_FWL_NOTEIMP_H_ diff --git a/xfa/src/fwl/src/core/include/fwl_panelimp.h b/xfa/src/fwl/src/core/include/fwl_panelimp.h index 1c05db3363..7904148257 100644 --- a/xfa/src/fwl/src/core/include/fwl_panelimp.h +++ b/xfa/src/fwl/src/core/include/fwl_panelimp.h @@ -4,8 +4,9 @@ // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com -#ifndef _FWL_PANEL_IMP_H -#define _FWL_PANEL_IMP_H +#ifndef XFA_SRC_FWL_SRC_CORE_INCLUDE_FWL_PANELIMP_H_ +#define XFA_SRC_FWL_SRC_CORE_INCLUDE_FWL_PANELIMP_H_ + class CFWL_WidgetImp; class CFWL_WidgetImpProperties; class IFWL_Widget; @@ -26,4 +27,5 @@ class CFWL_PanelImp : public CFWL_WidgetImp { protected: IFWL_Content* m_pContent; }; -#endif + +#endif // XFA_SRC_FWL_SRC_CORE_INCLUDE_FWL_PANELIMP_H_ diff --git a/xfa/src/fwl/src/core/include/fwl_targetimp.h b/xfa/src/fwl/src/core/include/fwl_targetimp.h index ee88b42813..e9c9aeb099 100644 --- a/xfa/src/fwl/src/core/include/fwl_targetimp.h +++ b/xfa/src/fwl/src/core/include/fwl_targetimp.h @@ -4,8 +4,8 @@ // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com -#ifndef FWL_TARGETIMP_H_ -#define FWL_TARGETIMP_H_ +#ifndef XFA_SRC_FWL_SRC_CORE_INCLUDE_FWL_TARGETIMP_H_ +#define XFA_SRC_FWL_SRC_CORE_INCLUDE_FWL_TARGETIMP_H_ #include "core/include/fxcrt/fx_basic.h" #include "xfa/include/fwl/core/fwl_target.h" @@ -24,4 +24,4 @@ class CFWL_TargetImp { CFWL_TargetImp(); }; -#endif // FWL_TARGETIMP_H_ +#endif // XFA_SRC_FWL_SRC_CORE_INCLUDE_FWL_TARGETIMP_H_ diff --git a/xfa/src/fwl/src/core/include/fwl_threadimp.h b/xfa/src/fwl/src/core/include/fwl_threadimp.h index 9bf186980e..169de6a06d 100644 --- a/xfa/src/fwl/src/core/include/fwl_threadimp.h +++ b/xfa/src/fwl/src/core/include/fwl_threadimp.h @@ -4,8 +4,8 @@ // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com -#ifndef FWL_THREADIMP_H_ -#define FWL_THREADIMP_H_ +#ifndef XFA_SRC_FWL_SRC_CORE_INCLUDE_FWL_THREADIMP_H_ +#define XFA_SRC_FWL_SRC_CORE_INCLUDE_FWL_THREADIMP_H_ #include "xfa/include/fwl/core/fwl_thread.h" // For FWL_HTHREAD. @@ -37,4 +37,4 @@ class CFWL_NoteThreadImp : public CFWL_ThreadImp { CFWL_NoteDriver* const m_pNoteDriver; }; -#endif // FWL_THREADIMP_H_ +#endif // XFA_SRC_FWL_SRC_CORE_INCLUDE_FWL_THREADIMP_H_ diff --git a/xfa/src/fwl/src/core/include/fwl_widgetimp.h b/xfa/src/fwl/src/core/include/fwl_widgetimp.h index 47a6775ab6..22cba226d2 100644 --- a/xfa/src/fwl/src/core/include/fwl_widgetimp.h +++ b/xfa/src/fwl/src/core/include/fwl_widgetimp.h @@ -4,8 +4,8 @@ // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com -#ifndef FWL_WIDGETIMP_H_ -#define FWL_WIDGETIMP_H_ +#ifndef XFA_SRC_FWL_SRC_CORE_INCLUDE_FWL_WIDGETIMP_H_ +#define XFA_SRC_FWL_SRC_CORE_INCLUDE_FWL_WIDGETIMP_H_ #include "xfa/include/fwl/core/fwl_widget.h" #include "xfa/src/fwl/src/core/include/fwl_targetimp.h" @@ -160,4 +160,4 @@ class CFWL_WidgetImpDelegate : public IFWL_WidgetDelegate { const CFX_Matrix* pMatrix = NULL) override; }; -#endif // FWL_WIDGETIMP_H_ +#endif // XFA_SRC_FWL_SRC_CORE_INCLUDE_FWL_WIDGETIMP_H_ diff --git a/xfa/src/fwl/src/core/include/fwl_widgetmgrimp.h b/xfa/src/fwl/src/core/include/fwl_widgetmgrimp.h index aa2a7a01cf..cb6b6b3c15 100644 --- a/xfa/src/fwl/src/core/include/fwl_widgetmgrimp.h +++ b/xfa/src/fwl/src/core/include/fwl_widgetmgrimp.h @@ -4,8 +4,9 @@ // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com -#ifndef _FWL_WIDGETMGR_IMP_H -#define _FWL_WIDGETMGR_IMP_H +#ifndef XFA_SRC_FWL_SRC_CORE_INCLUDE_FWL_WIDGETMGRIMP_H_ +#define XFA_SRC_FWL_SRC_CORE_INCLUDE_FWL_WIDGETMGRIMP_H_ + class CFWL_TargetImp; class IFWL_Widget; class IFWL_AdapterWidgetMgr; @@ -165,4 +166,5 @@ class CFWL_WidgetMgrDelegate : public IFWL_WidgetMgrDelegate { CFWL_WidgetMgr* m_pWidgetMgr; }; -#endif + +#endif // XFA_SRC_FWL_SRC_CORE_INCLUDE_FWL_WIDGETMGRIMP_H_ |