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

Unified Diff: xfa/src/fwl/src/core/include/fwl_formimp.h

Issue 1172793002: Merge to XFA: Use stdint.h types throughout PDFium. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@xfa
Patch Set: Created 5 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « xfa/src/fwl/src/core/include/fwl_contentimp.h ('k') | xfa/src/fwl/src/core/include/fwl_gridimp.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: xfa/src/fwl/src/core/include/fwl_formimp.h
diff --git a/xfa/src/fwl/src/core/include/fwl_formimp.h b/xfa/src/fwl/src/core/include/fwl_formimp.h
index b283c121e950f717f69ac01f3152e4f8acecc891..0cf9c9d25c158bd7b08d71efdbe8509ba8dc3981 100644
--- a/xfa/src/fwl/src/core/include/fwl_formimp.h
+++ b/xfa/src/fwl/src/core/include/fwl_formimp.h
@@ -58,7 +58,7 @@ public:
{
bDisabled ? m_dwState |= FWL_SYSBUTTONSTATE_Disabled : m_dwState &= ~FWL_SYSBUTTONSTATE_Disabled;
}
- FX_INT32 GetPartState()
+ int32_t GetPartState()
{
return (IsDisabled() ? FWL_PARTSTATE_FRM_Disabled : (m_dwState + 1));
}
@@ -116,8 +116,8 @@ protected:
void CalcContentRect(CFX_RectF &rtContent);
CFWL_SysBtn* GetSysBtnAtPoint(FX_FLOAT fx, FX_FLOAT fy);
CFWL_SysBtn* GetSysBtnByState(FX_DWORD dwState);
- CFWL_SysBtn* GetSysBtnByIndex(FX_INT32 nIndex);
- FX_INT32 GetSysBtnIndex(CFWL_SysBtn *pBtn);
+ CFWL_SysBtn* GetSysBtnByIndex(int32_t nIndex);
+ int32_t GetSysBtnIndex(CFWL_SysBtn *pBtn);
FX_FLOAT GetCaptionHeight();
void DrawCaptionText(CFX_Graphics *pGs, IFWL_ThemeProvider *pTheme, const CFX_Matrix* pMatrix = NULL);
void DrawIconImage(CFX_Graphics *pGs, IFWL_ThemeProvider *pTheme, const CFX_Matrix* pMatrix = NULL);
@@ -150,9 +150,9 @@ protected:
RestoreInfo m_InfoStart;
FX_FLOAT m_fCXBorder;
FX_FLOAT m_fCYBorder;
- FX_INT32 m_iCaptureBtn;
- FX_INT32 m_iSysBox;
- FX_INT32 m_eResizeType;
+ int32_t m_iCaptureBtn;
+ int32_t m_iSysBox;
+ int32_t m_eResizeType;
FX_BOOL m_bLButtonDown;
FX_BOOL m_bMaximized;
FX_BOOL m_bSetMaximize;
@@ -170,7 +170,7 @@ class CFWL_FormDelegate : public CFWL_WidgetImpDelegate
{
public:
CFWL_FormDelegate(CFWL_FormImp *pOwner);
- virtual FX_INT32 OnProcessMessage(CFWL_Message *pMessage);
+ virtual int32_t OnProcessMessage(CFWL_Message *pMessage);
virtual FWL_ERR OnProcessEvent(CFWL_Event *pEvent);
virtual FWL_ERR OnDrawWidget(CFX_Graphics *pGraphics, const CFX_Matrix *pMatrix = NULL);
protected:
« no previous file with comments | « xfa/src/fwl/src/core/include/fwl_contentimp.h ('k') | xfa/src/fwl/src/core/include/fwl_gridimp.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698