diff options
author | tsepez <tsepez@chromium.org> | 2017-01-24 12:17:40 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2017-01-24 12:17:41 -0800 |
commit | 33316fccc6a523077d15dc7944a492099a99f6e1 (patch) | |
tree | 0a834b85af713b391516c5902ee6dc580d199bcd /core/fxcrt/fx_arb.h | |
parent | 6e162b54f708d7957c04d8dffce367fbeaa1a366 (diff) | |
download | pdfium-33316fccc6a523077d15dc7944a492099a99f6e1.tar.xz |
Use std::vector for fx_ucd.h arrays.chromium/2992
Review-Url: https://codereview.chromium.org/2650773003
Diffstat (limited to 'core/fxcrt/fx_arb.h')
-rw-r--r-- | core/fxcrt/fx_arb.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/core/fxcrt/fx_arb.h b/core/fxcrt/fx_arb.h index 6d556fe9f9..d24197c7e5 100644 --- a/core/fxcrt/fx_arb.h +++ b/core/fxcrt/fx_arb.h @@ -7,6 +7,8 @@ #ifndef CORE_FXCRT_FX_ARB_H_ #define CORE_FXCRT_FX_ARB_H_ +#include <vector> + #include "core/fxcrt/fx_system.h" #include "core/fxcrt/fx_ucd.h" @@ -39,10 +41,10 @@ enum FX_ARBPOSITION { }; void FX_BidiLine(CFX_WideString& wsText, int32_t iBaseLevel = 0); -void FX_BidiLine(CFX_TxtCharArray& chars, +void FX_BidiLine(std::vector<CFX_TxtChar>& chars, int32_t iCount, int32_t iBaseLevel = 0); -void FX_BidiLine(CFX_RTFCharArray& chars, +void FX_BidiLine(std::vector<CFX_RTFChar>& chars, int32_t iCount, int32_t iBaseLevel = 0); |