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

Unified Diff: xfa/fxbarcode/common/BC_CommonBitMatrix.h

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/common/BC_CommonBitArray.h ('k') | xfa/fxbarcode/common/BC_CommonBitSource.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: xfa/fxbarcode/common/BC_CommonBitMatrix.h
diff --git a/xfa/fxbarcode/common/BC_CommonBitMatrix.h b/xfa/fxbarcode/common/BC_CommonBitMatrix.h
index ebf7454dcac7865220f155a873b42b81e2bd1174..48a26b9f8c00170dc7910515b83eec92b48997e5 100644
--- a/xfa/fxbarcode/common/BC_CommonBitMatrix.h
+++ b/xfa/fxbarcode/common/BC_CommonBitMatrix.h
@@ -15,6 +15,10 @@ class CBC_CommonBitMatrix {
public:
CBC_CommonBitMatrix();
virtual ~CBC_CommonBitMatrix();
+
+ virtual void Init(int32_t dimension);
+ virtual void Init(int32_t width, int32_t height);
+
FX_BOOL Get(int32_t x, int32_t y);
void Set(int32_t x, int32_t y);
void Flip(int32_t x, int32_t y);
@@ -32,8 +36,6 @@ class CBC_CommonBitMatrix {
int32_t GetHeight();
int32_t GetRowSize();
int32_t GetDimension(int32_t& e);
- virtual void Init(int32_t dimension);
- virtual void Init(int32_t width, int32_t height);
int32_t* GetBits();
private:
« no previous file with comments | « xfa/fxbarcode/common/BC_CommonBitArray.h ('k') | xfa/fxbarcode/common/BC_CommonBitSource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698