diff options
author | tsepez <tsepez@chromium.org> | 2016-04-21 12:09:41 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-04-21 12:09:41 -0700 |
commit | df964dfb34e648e27dce7bef785b204894a7058a (patch) | |
tree | 5b0e31ca677aad571fc1fbd67c0e5e57d21cdc03 /core/fpdftext/include/cpdf_textpagefind.h | |
parent | d00a91229690e453cb7f2eed652d81e864b27d2a (diff) | |
download | pdfium-df964dfb34e648e27dce7bef785b204894a7058a.tar.xz |
Replace CFX_RectArray with std::vector<CFX_FloatRect>
Use RVO now that we use an array type compatible with it.
Review URL: https://codereview.chromium.org/1906903002
Diffstat (limited to 'core/fpdftext/include/cpdf_textpagefind.h')
-rw-r--r-- | core/fpdftext/include/cpdf_textpagefind.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/core/fpdftext/include/cpdf_textpagefind.h b/core/fpdftext/include/cpdf_textpagefind.h index ec739e4896..d9937772d1 100644 --- a/core/fpdftext/include/cpdf_textpagefind.h +++ b/core/fpdftext/include/cpdf_textpagefind.h @@ -25,7 +25,6 @@ class CPDF_TextPageFind { int startPos = 0); FX_BOOL FindNext(); FX_BOOL FindPrev(); - void GetRectArray(CFX_RectArray& rects) const; int GetCurOrder() const; int GetMatchedCount() const; @@ -58,7 +57,7 @@ class CPDF_TextPageFind { FX_BOOL m_bMatchWholeWord; int m_resStart; int m_resEnd; - CFX_RectArray m_resArray; + std::vector<CFX_FloatRect> m_resArray; FX_BOOL m_IsFind; }; |