summaryrefslogtreecommitdiff
path: root/core/fpdfdoc/cpdf_structelement.cpp
diff options
context:
space:
mode:
authorDan Sinclair <dsinclair@chromium.org>2017-11-27 19:08:26 +0000
committerChromium commit bot <commit-bot@chromium.org>2017-11-27 19:08:26 +0000
commit81ad373a24575985413c142820be8bf945cad71f (patch)
tree54d5bc47d423f5805def8c7e831ae056e1ed0c2a /core/fpdfdoc/cpdf_structelement.cpp
parent3071871519db375e22950fad02b87aed43963efc (diff)
downloadpdfium-81ad373a24575985413c142820be8bf945cad71f.tar.xz
Convert CPDF_StructElement::CountKids to size_t
This CL changes CountKids to not used CollectionSize and returns size_t directly. Callers updated as needed. Bug: pdfium:774 Change-Id: I8862218e62cd13be9473fa8116afd29cd3afde04 Reviewed-on: https://pdfium-review.googlesource.com/19510 Reviewed-by: Ryan Harrison <rharrison@chromium.org> Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'core/fpdfdoc/cpdf_structelement.cpp')
-rw-r--r--core/fpdfdoc/cpdf_structelement.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/core/fpdfdoc/cpdf_structelement.cpp b/core/fpdfdoc/cpdf_structelement.cpp
index 0b0b542852..13985b8fed 100644
--- a/core/fpdfdoc/cpdf_structelement.cpp
+++ b/core/fpdfdoc/cpdf_structelement.cpp
@@ -14,7 +14,6 @@
#include "core/fpdfapi/parser/cpdf_reference.h"
#include "core/fpdfapi/parser/cpdf_stream.h"
#include "core/fpdfdoc/cpdf_structtree.h"
-#include "third_party/base/stl_util.h"
CPDF_StructKid::CPDF_StructKid()
: m_Type(Invalid),
@@ -45,11 +44,11 @@ CPDF_StructElement::CPDF_StructElement(CPDF_StructTree* pTree,
CPDF_StructElement::~CPDF_StructElement() = default;
-int CPDF_StructElement::CountKids() const {
- return pdfium::CollectionSize<int>(m_Kids);
+size_t CPDF_StructElement::CountKids() const {
+ return m_Kids.size();
}
-CPDF_StructElement* CPDF_StructElement::GetKidIfElement(int index) const {
+CPDF_StructElement* CPDF_StructElement::GetKidIfElement(size_t index) const {
return m_Kids[index].m_Type == CPDF_StructKid::Element
? m_Kids[index].m_pElement.Get()
: nullptr;