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

Unified Diff: xfa/fxbarcode/common/BC_CommonByteArray.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_CommonBitSource.h ('k') | xfa/fxbarcode/common/BC_CommonByteMatrix.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: xfa/fxbarcode/common/BC_CommonByteArray.h
diff --git a/xfa/fxbarcode/common/BC_CommonByteArray.h b/xfa/fxbarcode/common/BC_CommonByteArray.h
index eaf68d9f41b77ff2ecddf6ba5c4c04425fc09cee..2570f81c0f64afc34e749668c2088a620fc21c4c 100644
--- a/xfa/fxbarcode/common/BC_CommonByteArray.h
+++ b/xfa/fxbarcode/common/BC_CommonByteArray.h
@@ -10,16 +10,12 @@
#include "core/fxcrt/include/fx_basic.h"
class CBC_CommonByteArray {
- private:
- int32_t m_size;
- int32_t m_index;
- uint8_t* m_bytes;
-
public:
CBC_CommonByteArray();
- CBC_CommonByteArray(int32_t size);
+ explicit CBC_CommonByteArray(int32_t size);
CBC_CommonByteArray(uint8_t* byteArray, int32_t size);
virtual ~CBC_CommonByteArray();
+
int32_t At(int32_t index);
void Set(int32_t index, int32_t value);
int32_t Size();
@@ -28,6 +24,11 @@ class CBC_CommonByteArray {
void Reserve(int32_t capacity);
void Set(uint8_t* source, int32_t offset, int32_t count);
void Set(CFX_ByteArray* source, int32_t offset, int32_t count);
+
+ private:
+ int32_t m_size;
+ int32_t m_index;
+ uint8_t* m_bytes;
};
#endif // XFA_FXBARCODE_COMMON_BC_COMMONBYTEARRAY_H_
« no previous file with comments | « xfa/fxbarcode/common/BC_CommonBitSource.h ('k') | xfa/fxbarcode/common/BC_CommonByteMatrix.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698