summaryrefslogtreecommitdiff
path: root/core/fpdfdoc/cpdf_structelement.h
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.h
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.h')
-rw-r--r--core/fpdfdoc/cpdf_structelement.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/fpdfdoc/cpdf_structelement.h b/core/fpdfdoc/cpdf_structelement.h
index 57f8aee2e8..51ee93bd54 100644
--- a/core/fpdfdoc/cpdf_structelement.h
+++ b/core/fpdfdoc/cpdf_structelement.h
@@ -43,8 +43,8 @@ class CPDF_StructElement : public Retainable {
const ByteString& GetTitle() const { return m_Title; }
CPDF_Dictionary* GetDict() const { return m_pDict.Get(); }
- int CountKids() const;
- CPDF_StructElement* GetKidIfElement(int index) const;
+ size_t CountKids() const;
+ CPDF_StructElement* GetKidIfElement(size_t index) const;
std::vector<CPDF_StructKid>* GetKids() { return &m_Kids; }
private: