diff options
author | tsepez <tsepez@chromium.org> | 2017-01-24 06:12:34 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2017-01-24 06:12:34 -0800 |
commit | 3d328767f9c0c04b62173aac03c35aab3fb87ffe (patch) | |
tree | 18a1a71ee987831e427b0dd62d26745861258a22 /xfa/fde/fde_visualset.h | |
parent | e73fea598f088151213fb11100798c615543ca2f (diff) | |
download | pdfium-3d328767f9c0c04b62173aac03c35aab3fb87ffe.tar.xz |
Use std::vector for CFX_RectF arrays
Review-Url: https://codereview.chromium.org/2653743002
Diffstat (limited to 'xfa/fde/fde_visualset.h')
-rw-r--r-- | xfa/fde/fde_visualset.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/xfa/fde/fde_visualset.h b/xfa/fde/fde_visualset.h index 8aef237ba1..30703e795a 100644 --- a/xfa/fde/fde_visualset.h +++ b/xfa/fde/fde_visualset.h @@ -7,6 +7,8 @@ #ifndef XFA_FDE_FDE_VISUALSET_H_ #define XFA_FDE_FDE_VISUALSET_H_ +#include <vector> + #include "core/fxcrt/cfx_retain_ptr.h" #include "core/fxcrt/fx_coordinates.h" #include "core/fxcrt/fx_system.h" @@ -56,7 +58,7 @@ class IFDE_TextSet : public IFDE_VisualSet { bool bCharCode = false, CFX_WideString* pWSForms = nullptr) = 0; virtual int32_t GetCharRects(const FDE_TEXTEDITPIECE* hText, - CFX_RectFArray& rtArray, + std::vector<CFX_RectF>* rtArray, bool bbox) = 0; }; |