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

Unified Diff: fpdfsdk/fpdf_dataavail.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/formfiller/cffl_pushbutton.cpp ('k') | fpdfsdk/fpdf_ext.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: fpdfsdk/fpdf_dataavail.cpp
diff --git a/fpdfsdk/fpdf_dataavail.cpp b/fpdfsdk/fpdf_dataavail.cpp
index 6cef5fd37bba09eeba844c43be5a36f78244b99f..dc6efbc4368ddbec5be1b4eca5891416ef38b99a 100644
--- a/fpdfsdk/fpdf_dataavail.cpp
+++ b/fpdfsdk/fpdf_dataavail.cpp
@@ -43,7 +43,7 @@ class CFPDF_FileAvailWrap : public IPDF_DataAvail::FileAvail {
void Set(FX_FILEAVAIL* pfileAvail) { m_pfileAvail = pfileAvail; }
// IPDF_DataAvail::FileAvail:
- FX_BOOL IsDataAvail(FX_FILESIZE offset, FX_DWORD size) override {
+ FX_BOOL IsDataAvail(FX_FILESIZE offset, uint32_t size) override {
return m_pfileAvail->IsDataAvail(m_pfileAvail, offset, size);
}
@@ -81,7 +81,7 @@ class CFPDF_DownloadHintsWrap : public IPDF_DataAvail::DownloadHints {
public:
// IFX_DownloadHints
- void AddSegment(FX_FILESIZE offset, FX_DWORD size) override {
+ void AddSegment(FX_FILESIZE offset, uint32_t size) override {
m_pDownloadHints->AddSegment(m_pDownloadHints, offset, size);
}
« no previous file with comments | « fpdfsdk/formfiller/cffl_pushbutton.cpp ('k') | fpdfsdk/fpdf_ext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698