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

Unified Diff: xfa/fxbarcode/BC_BufferedImageLuminanceSource.cpp

Issue 2067903002: Make code compile with clang_use_chrome_plugin (part III) (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: address comments Created 4 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/fxbarcode/BC_BufferedImageLuminanceSource.h ('k') | xfa/fxbarcode/BC_DecoderResult.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: xfa/fxbarcode/BC_BufferedImageLuminanceSource.cpp
diff --git a/xfa/fxbarcode/BC_BufferedImageLuminanceSource.cpp b/xfa/fxbarcode/BC_BufferedImageLuminanceSource.cpp
index f822349972d162edd0a9589e6350d3204999a5e1..7cdf957ce0d62cccb5bfd1c1eec7ce2f38a81287 100644
--- a/xfa/fxbarcode/BC_BufferedImageLuminanceSource.cpp
+++ b/xfa/fxbarcode/BC_BufferedImageLuminanceSource.cpp
@@ -30,7 +30,8 @@
class CBC_Pause : public IFX_Pause {
public:
- virtual FX_BOOL NeedToPauseNow() { return TRUE; }
+ // IFX_Pause
+ FX_BOOL NeedToPauseNow() override;
};
static CFX_DIBitmap* CreateDIBSource(IFX_FileRead* fileread) {
@@ -154,3 +155,7 @@ CFX_ByteArray* CBC_BufferedImageLuminanceSource::GetMatrix() {
}
return matrix;
}
+
+FX_BOOL CBC_Pause::NeedToPauseNow() {
+ return TRUE;
+}
« no previous file with comments | « xfa/fxbarcode/BC_BufferedImageLuminanceSource.h ('k') | xfa/fxbarcode/BC_DecoderResult.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698