summaryrefslogtreecommitdiff
path: root/core/fxcrt/cfx_chariter.h
diff options
context:
space:
mode:
authorDan Sinclair <dsinclair@chromium.org>2017-04-19 16:07:21 -0400
committerChromium commit bot <commit-bot@chromium.org>2017-04-19 21:23:25 +0000
commit3c66ea01f5239a7b1a0da75285e0c8048e5cf784 (patch)
tree691729ad6f8924f2fc70dc31f01fafbfdb7ce8a4 /core/fxcrt/cfx_chariter.h
parent4363c8ff37b6e6a98fffe53fff248e61d04f697a (diff)
downloadpdfium-3c66ea01f5239a7b1a0da75285e0c8048e5cf784.tar.xz
Update IFX_CharIter::Clone to return unique_ptr
This Cl converts the Clone method of IFX_CharIter to return a unique_ptr. The usages were all converting to a unique_ptr already. Change-Id: I1ca5ddd03eca8f21d616efb2b92fb27899c43c23 Reviewed-on: https://pdfium-review.googlesource.com/4351 Reviewed-by: Nicolás Peña <npm@chromium.org> Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'core/fxcrt/cfx_chariter.h')
-rw-r--r--core/fxcrt/cfx_chariter.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/core/fxcrt/cfx_chariter.h b/core/fxcrt/cfx_chariter.h
index 00a725ef75..50fdde879f 100644
--- a/core/fxcrt/cfx_chariter.h
+++ b/core/fxcrt/cfx_chariter.h
@@ -7,6 +7,8 @@
#ifndef CORE_FXCRT_CFX_CHARITER_H_
#define CORE_FXCRT_CFX_CHARITER_H_
+#include <memory>
+
#include "core/fxcrt/fx_string.h"
#include "core/fxcrt/fx_system.h"
#include "core/fxcrt/ifx_chariter.h"
@@ -21,7 +23,7 @@ class CFX_CharIter : public IFX_CharIter {
void SetAt(int32_t nIndex) override;
int32_t GetAt() const override;
bool IsEOF(bool bTail = true) const override;
- IFX_CharIter* Clone() override;
+ std::unique_ptr<IFX_CharIter> Clone() override;
private:
const CFX_WideString& m_wsText;