diff options
author | Lei Zhang <thestig@chromium.org> | 2018-09-17 22:22:36 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-09-17 22:22:36 +0000 |
commit | 4c3b4aa6d1df54fe02912fed04a08adc6826310f (patch) | |
tree | 29294bd608b815d503abaa218ca940c4f5a562df /fxbarcode/cbc_codebase.h | |
parent | c397a9003207f14e02a09d611d91a6d14a2de771 (diff) | |
download | pdfium-4c3b4aa6d1df54fe02912fed04a08adc6826310f.tar.xz |
Make CBC_CodeBase::SetWideNarrowRatio() not virtual.
Make CBC_Writer::SetWideNarrowRatio() virtual instead. Do the same for
SetStartChar(), SetEndChar(), and SetErrorCorrectionLevel().
Change-Id: I70e87c0e9f8b772331105e57dd26075db3cfcb95
Reviewed-on: https://pdfium-review.googlesource.com/42602
Commit-Queue: Lei Zhang <thestig@chromium.org>
Reviewed-by: Henrique Nakashima <hnakashima@chromium.org>
Diffstat (limited to 'fxbarcode/cbc_codebase.h')
-rw-r--r-- | fxbarcode/cbc_codebase.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fxbarcode/cbc_codebase.h b/fxbarcode/cbc_codebase.h index be49f8a0e7..86d10c3b92 100644 --- a/fxbarcode/cbc_codebase.h +++ b/fxbarcode/cbc_codebase.h @@ -29,12 +29,12 @@ class CBC_CodeBase { virtual bool Encode(const WideStringView& contents) = 0; virtual bool RenderDevice(CFX_RenderDevice* device, const CFX_Matrix* matrix) = 0; - virtual bool SetWideNarrowRatio(int8_t ratio); - virtual bool SetStartChar(char start); - virtual bool SetEndChar(char end); - virtual bool SetErrorCorrectionLevel(int32_t level); bool SetTextLocation(BC_TEXT_LOC location); + bool SetWideNarrowRatio(int8_t ratio); + bool SetStartChar(char start); + bool SetEndChar(char end); + bool SetErrorCorrectionLevel(int32_t level); bool SetCharEncoding(int32_t encoding); bool SetModuleHeight(int32_t moduleHeight); bool SetModuleWidth(int32_t moduleWidth); |