| Index: third_party/WebKit/Source/core/editing/iterators/CharacterIterator.h | 
| diff --git a/third_party/WebKit/Source/core/editing/iterators/CharacterIterator.h b/third_party/WebKit/Source/core/editing/iterators/CharacterIterator.h | 
| index cff0b5fe0722d5137ed903bbf9b7017724fc73db..0137e9be98359320e34ae8e8b98be26a63d38c42 100644 | 
| --- a/third_party/WebKit/Source/core/editing/iterators/CharacterIterator.h | 
| +++ b/third_party/WebKit/Source/core/editing/iterators/CharacterIterator.h | 
| @@ -52,8 +52,7 @@ public: | 
| int length() const { return m_textIterator.length() - m_runOffset; } | 
| UChar characterAt(unsigned index) const { return m_textIterator.characterAt(m_runOffset + index); } | 
|  | 
| -    template<typename BufferType> | 
| -    void appendTextTo(BufferType& output) { m_textIterator.copyTextTo(output, m_runOffset); } | 
| +    void copyTextTo(ForwardsTextBuffer* output); | 
|  | 
| int characterOffset() const { return m_offset; } | 
| EphemeralRangeTemplate<Strategy> range() const; | 
|  |