| Index: third_party/WebKit/Source/core/editing/iterators/CharacterIterator.cpp | 
| diff --git a/third_party/WebKit/Source/core/editing/iterators/CharacterIterator.cpp b/third_party/WebKit/Source/core/editing/iterators/CharacterIterator.cpp | 
| index ced829213a513fa737f4e60d321cbbe34f8c93f2..e3e1e341615c574856492bb28ab7b7a0b07eb908 100644 | 
| --- a/third_party/WebKit/Source/core/editing/iterators/CharacterIterator.cpp | 
| +++ b/third_party/WebKit/Source/core/editing/iterators/CharacterIterator.cpp | 
| @@ -174,6 +174,12 @@ void CharacterIteratorAlgorithm<Strategy>::advance(int count) | 
| } | 
|  | 
| template <typename Strategy> | 
| +void CharacterIteratorAlgorithm<Strategy>::copyTextTo(ForwardsTextBuffer* output) | 
| +{ | 
| +    m_textIterator.copyTextTo(output, m_runOffset); | 
| +} | 
| + | 
| +template <typename Strategy> | 
| EphemeralRangeTemplate<Strategy> CharacterIteratorAlgorithm<Strategy>::calculateCharacterSubrange(int offset, int length) | 
| { | 
| advance(offset); | 
|  |