| Index: third_party/WebKit/Source/web/WebFrameContentDumper.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebFrameContentDumper.cpp b/third_party/WebKit/Source/web/WebFrameContentDumper.cpp
|
| index c0fd17fc7164d9d8e85207abe49b09e9d1022045..e426e21e2d319e53b543996eae95a19407b2d421 100644
|
| --- a/third_party/WebKit/Source/web/WebFrameContentDumper.cpp
|
| +++ b/third_party/WebKit/Source/web/WebFrameContentDumper.cpp
|
| @@ -39,9 +39,9 @@ static void frameContentAsPlainText(size_t maxChars,
|
| EphemeralRange::rangeOfContents(*document->body());
|
|
|
| // The text iterator will walk nodes giving us text. This is similar to
|
| - // the plainText() function in core/editing/TextIterator.h, but we implement the maximum
|
| - // size and also copy the results directly into a wstring, avoiding the
|
| - // string conversion.
|
| + // the plainText() function in core/editing/TextIterator.h, but we
|
| + // implement the maximum size and also copy the results directly into a
|
| + // wstring, avoiding the string conversion.
|
| for (TextIterator it(range.startPosition(), range.endPosition());
|
| !it.atEnd(); it.advance()) {
|
| it.text().appendTextToStringBuilder(output, 0,
|
|
|