From 6facd15a7ecfbae24f2c356fa3b358288120a6f2 Mon Sep 17 00:00:00 2001 From: Tom Sepez Date: Wed, 16 May 2018 17:07:02 +0000 Subject: Use pdfium::span<> in cpdf_creator. Change-Id: I959fe5dc30fcfe2176c7e5a64b07d082313a22b4 Reviewed-on: https://pdfium-review.googlesource.com/32595 Commit-Queue: Tom Sepez Reviewed-by: dsinclair --- core/fpdfapi/edit/cpdf_flateencoder.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'core/fpdfapi/edit/cpdf_flateencoder.h') diff --git a/core/fpdfapi/edit/cpdf_flateencoder.h b/core/fpdfapi/edit/cpdf_flateencoder.h index b69b54d93b..05633f6814 100644 --- a/core/fpdfapi/edit/cpdf_flateencoder.h +++ b/core/fpdfapi/edit/cpdf_flateencoder.h @@ -14,6 +14,7 @@ #include "core/fxcrt/fx_memory.h" #include "core/fxcrt/maybe_owned.h" #include "core/fxcrt/retain_ptr.h" +#include "third_party/base/span.h" class CPDF_Stream; @@ -28,8 +29,9 @@ class CPDF_FlateEncoder { // Returns |m_pClonedDict| if it is valid. Otherwise returns |m_pDict|. const CPDF_Dictionary* GetDict() const; - uint32_t GetSize() const { return m_dwSize; } - const uint8_t* GetData() const { return m_pData.Get(); } + pdfium::span GetSpan() const { + return pdfium::make_span(m_pData.Get(), m_dwSize); + } private: uint32_t m_dwSize; -- cgit v1.2.3