diff options
author | Ryan Harrison <rharrison@chromium.org> | 2018-02-06 16:53:14 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-02-06 16:53:14 +0000 |
commit | 41441c9da88210376a87c4d03d71232b390b7cee (patch) | |
tree | 3a3c4b1fa1704c39bf2ec935c36be39f1991692d /core/fxcodec/bmp/fx_bmp.h | |
parent | b105152222f9dfb387efa6a70dedf3dd0ceb2cd5 (diff) | |
download | pdfium-41441c9da88210376a87c4d03d71232b390b7cee.tar.xz |
Convert BMP class name style to match other codecs
BMPDecompressor -> CFX_BmpDecompressor
CBmpContext -> CFX_BmpContext
BUG=chromium:808336
Change-Id: If8ef5294171e3619ae1d7c5175ddf23b7673ec78
Reviewed-on: https://pdfium-review.googlesource.com/25611
Reviewed-by: Henrique Nakashima <hnakashima@chromium.org>
Commit-Queue: Ryan Harrison <rharrison@chromium.org>
Diffstat (limited to 'core/fxcodec/bmp/fx_bmp.h')
-rw-r--r-- | core/fxcodec/bmp/fx_bmp.h | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/core/fxcodec/bmp/fx_bmp.h b/core/fxcodec/bmp/fx_bmp.h index 4033e510a6..d81b97ea7e 100644 --- a/core/fxcodec/bmp/fx_bmp.h +++ b/core/fxcodec/bmp/fx_bmp.h @@ -64,10 +64,10 @@ typedef struct tagBmpInfoHeader { } BmpInfoHeader; #pragma pack() -class BMPDecompressor { +class CFX_BmpDecompressor { public: - BMPDecompressor(); - ~BMPDecompressor(); + CFX_BmpDecompressor(); + ~CFX_BmpDecompressor(); void Error(); int32_t DecodeImage(); @@ -123,12 +123,13 @@ class BMPDecompressor { void SetHeight(int32_t signed_height); }; -class CBmpContext : public CCodec_BmpModule::Context { +class CFX_BmpContext : public CCodec_BmpModule::Context { public: - CBmpContext(CCodec_BmpModule* pModule, CCodec_BmpModule::Delegate* pDelegate); - ~CBmpContext() override; + CFX_BmpContext(CCodec_BmpModule* pModule, + CCodec_BmpModule::Delegate* pDelegate); + ~CFX_BmpContext() override; - BMPDecompressor m_Bmp; + CFX_BmpDecompressor m_Bmp; UnownedPtr<CCodec_BmpModule> const m_pModule; UnownedPtr<CCodec_BmpModule::Delegate> const m_pDelegate; }; |