From 980beeb5b06facc5bf178c03394ad9487b9b4b69 Mon Sep 17 00:00:00 2001 From: Ryan Harrison Date: Tue, 6 Feb 2018 14:41:14 +0000 Subject: Changing the member naming style in BMPDecompressor Currently there is no indication in the name of it being a member variable and the capitalization is inconsistent. This CL brings them all into line with Chromium style. BUG=chromium:808336 Change-Id: Iaed0272b69350f316371a67eb513934a0169f451 Reviewed-on: https://pdfium-review.googlesource.com/25430 Reviewed-by: Henrique Nakashima Commit-Queue: Ryan Harrison --- core/fxcodec/lbmp/fx_bmp.h | 68 +++++++++++++++++++++++----------------------- 1 file changed, 34 insertions(+), 34 deletions(-) (limited to 'core/fxcodec/lbmp/fx_bmp.h') diff --git a/core/fxcodec/lbmp/fx_bmp.h b/core/fxcodec/lbmp/fx_bmp.h index 9dfa849939..5f970c458e 100644 --- a/core/fxcodec/lbmp/fx_bmp.h +++ b/core/fxcodec/lbmp/fx_bmp.h @@ -75,40 +75,40 @@ class BMPDecompressor { void SetInputBuffer(uint8_t* src_buf, uint32_t src_size); uint32_t GetAvailInput(uint8_t** avail_buf); - jmp_buf jmpbuf; - - void* context_ptr; - - std::vector out_row_buffer; - std::vector palette; - uint8_t* next_in; - - uint32_t header_offset; - uint32_t width; - uint32_t height; - uint32_t compress_flag; - int32_t components; - size_t src_row_bytes; - size_t out_row_bytes; - uint16_t bitCounts; - uint32_t color_used; - bool imgTB_flag; - int32_t pal_num; - int32_t pal_type; - uint32_t data_size; - uint32_t img_data_offset; - uint32_t img_ifh_size; - size_t row_num; - size_t col_num; - int32_t dpi_x; - int32_t dpi_y; - uint32_t mask_red; - uint32_t mask_green; - uint32_t mask_blue; - - uint32_t avail_in; - uint32_t skip_size; - int32_t decode_status; + jmp_buf jmpbuf_; + + void* context_ptr_; + + std::vector out_row_buffer_; + std::vector palette_; + uint8_t* next_in_; + + uint32_t header_offset_; + uint32_t width_; + uint32_t height_; + uint32_t compress_flag_; + int32_t components_; + size_t src_row_bytes_; + size_t out_row_bytes_; + uint16_t bit_counts_; + uint32_t color_used_; + bool imgTB_flag_; + int32_t pal_num_; + int32_t pal_type_; + uint32_t data_size_; + uint32_t img_data_offset_; + uint32_t img_ifh_size_; + size_t row_num_; + size_t col_num_; + int32_t dpi_x_; + int32_t dpi_y_; + uint32_t mask_red_; + uint32_t mask_green_; + uint32_t mask_blue_; + + uint32_t avail_in_; + uint32_t skip_size_; + int32_t decode_status_; private: bool GetDataPosition(uint32_t cur_pos); -- cgit v1.2.3