summaryrefslogtreecommitdiff
path: root/core/fxcodec/codec/ccodec_bmpmodule.h
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2018-08-10 20:03:34 +0000
committerChromium commit bot <commit-bot@chromium.org>2018-08-10 20:03:34 +0000
commit994d8b4e363bb86128593a9000a17b0e79f849f5 (patch)
treed26a21bb890d3795e02a1b9502ce11ceea9ad3eb /core/fxcodec/codec/ccodec_bmpmodule.h
parentf36a4644b828bd9ad214a42511af91b4a1073eea (diff)
downloadpdfium-994d8b4e363bb86128593a9000a17b0e79f849f5.tar.xz
Remove const args and const_casts where not required.
Introduce const/non-const versions of method where required. Part of the war on const_cast<>. Tidy one expression to use [] instead of .data(). Change-Id: I41e45669c79eee242ff2244c7dc3afcf6386a433 Reviewed-on: https://pdfium-review.googlesource.com/39852 Reviewed-by: Lei Zhang <thestig@chromium.org> Commit-Queue: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'core/fxcodec/codec/ccodec_bmpmodule.h')
-rw-r--r--core/fxcodec/codec/ccodec_bmpmodule.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/fxcodec/codec/ccodec_bmpmodule.h b/core/fxcodec/codec/ccodec_bmpmodule.h
index 9eef8867c6..ca2340d978 100644
--- a/core/fxcodec/codec/ccodec_bmpmodule.h
+++ b/core/fxcodec/codec/ccodec_bmpmodule.h
@@ -34,7 +34,7 @@ class CCodec_BmpModule {
std::unique_ptr<Context> Start(Delegate* pDelegate);
FX_FILESIZE GetAvailInput(Context* pContext, uint8_t** avail_buf_ptr);
- void Input(Context* pContext, const uint8_t* src_buf, uint32_t src_size);
+ void Input(Context* pContext, uint8_t* src_buf, uint32_t src_size);
int32_t ReadHeader(Context* pContext,
int32_t* width,
int32_t* height,