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

Unified Diff: fpdfsdk/fsdk_mgr.cpp

Issue 1835693002: Remove FX_DWORD from fpdfsdk/ and testing/ (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 9 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 | « fpdfsdk/fsdk_baseform.cpp ('k') | fpdfsdk/fxedit/fxet_ap.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: fpdfsdk/fsdk_mgr.cpp
diff --git a/fpdfsdk/fsdk_mgr.cpp b/fpdfsdk/fsdk_mgr.cpp
index 91bafb10defe246b1d28e2f7b92365510a95dab9..83de4e84f97ef4b0730c70c8aa90724264eb7b1a 100644
--- a/fpdfsdk/fsdk_mgr.cpp
+++ b/fpdfsdk/fsdk_mgr.cpp
@@ -97,16 +97,16 @@ class CFX_SystemHandler : public IFX_SystemHandler {
uint8_t nCharset) override;
int32_t SetTimer(int32_t uElapse, TimerCallback lpTimerFunc) override;
void KillTimer(int32_t nID) override;
- FX_BOOL IsSHIFTKeyDown(FX_DWORD nFlag) override {
+ FX_BOOL IsSHIFTKeyDown(uint32_t nFlag) override {
return m_pEnv->FFI_IsSHIFTKeyDown(nFlag);
}
- FX_BOOL IsCTRLKeyDown(FX_DWORD nFlag) override {
+ FX_BOOL IsCTRLKeyDown(uint32_t nFlag) override {
return m_pEnv->FFI_IsCTRLKeyDown(nFlag);
}
- FX_BOOL IsALTKeyDown(FX_DWORD nFlag) override {
+ FX_BOOL IsALTKeyDown(uint32_t nFlag) override {
return m_pEnv->FFI_IsALTKeyDown(nFlag);
}
- FX_BOOL IsINSERTKeyDown(FX_DWORD nFlag) override {
+ FX_BOOL IsINSERTKeyDown(uint32_t nFlag) override {
return m_pEnv->FFI_IsINSERTKeyDown(nFlag);
}
FX_SYSTEMTIME GetLocalTime() override;
« no previous file with comments | « fpdfsdk/fsdk_baseform.cpp ('k') | fpdfsdk/fxedit/fxet_ap.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698