Chromium Code Reviews| Index: core/fxcodec/codec/codec_int.h |
| diff --git a/core/fxcodec/codec/codec_int.h b/core/fxcodec/codec/codec_int.h |
| index e0d2ff494fef20e056a2f4786df18e89c18709d1..2607a66efdecf69913ac8d74c73004df414c086f 100644 |
| --- a/core/fxcodec/codec/codec_int.h |
| +++ b/core/fxcodec/codec/codec_int.h |
| @@ -22,8 +22,8 @@ class CPDF_ColorSpace; |
| struct DecodeData { |
| public: |
| - DecodeData(unsigned char* src_data, OPJ_SIZE_T src_size) |
| - : src_data(src_data), src_size(src_size), offset(0) {} |
| + DecodeData(unsigned char* data, OPJ_SIZE_T size) |
| + : src_data(data), src_size(size), offset(0) {} |
| unsigned char* src_data; |
|
Tom Sepez
2016/06/06 16:43:33
nit: these should probably be uint8_t* rather than
Wei Li
2016/06/07 17:33:52
Done.
|
| OPJ_SIZE_T src_size; |
| OPJ_SIZE_T offset; |