From 4633d52736c4b926eceb1e18c4b379ff57fd31fa Mon Sep 17 00:00:00 2001 From: Henrique Nakashima Date: Thu, 8 Jun 2017 15:30:57 -0400 Subject: Adding constructor of CFX_ByteString that takes a std::ostringstream. Bug: pdfium:731 Change-Id: Ia0734deb3f309732dccae5c0cf6131d32713e87a Reviewed-on: https://pdfium-review.googlesource.com/6394 Reviewed-by: dsinclair Commit-Queue: Henrique Nakashima --- core/fxcrt/cfx_bytestring.cpp | 4 ++++ core/fxcrt/cfx_bytestring.h | 2 ++ 2 files changed, 6 insertions(+) diff --git a/core/fxcrt/cfx_bytestring.cpp b/core/fxcrt/cfx_bytestring.cpp index f0dc370cc9..b83c59ffeb 100644 --- a/core/fxcrt/cfx_bytestring.cpp +++ b/core/fxcrt/cfx_bytestring.cpp @@ -189,6 +189,10 @@ CFX_ByteString::CFX_ByteString( } } +CFX_ByteString::CFX_ByteString(std::ostringstream& outStream) + : CFX_ByteString(outStream.str().c_str(), + static_cast(outStream.tellp())) {} + CFX_ByteString::~CFX_ByteString() {} const CFX_ByteString& CFX_ByteString::operator=(const char* pStr) { diff --git a/core/fxcrt/cfx_bytestring.h b/core/fxcrt/cfx_bytestring.h index c4d48954ba..23e02491c5 100644 --- a/core/fxcrt/cfx_bytestring.h +++ b/core/fxcrt/cfx_bytestring.h @@ -8,6 +8,7 @@ #define CORE_FXCRT_CFX_BYTESTRING_H_ #include +#include #include #include "core/fxcrt/cfx_retain_ptr.h" @@ -45,6 +46,7 @@ class CFX_ByteString { explicit CFX_ByteString(const CFX_ByteStringC& bstrc); CFX_ByteString(const CFX_ByteStringC& bstrc1, const CFX_ByteStringC& bstrc2); CFX_ByteString(const std::initializer_list& list); + explicit CFX_ByteString(std::ostringstream& outStream); ~CFX_ByteString(); -- cgit v1.2.3