Index: third_party/WebKit/Source/platform/fonts/UTF16TextIterator.h |
diff --git a/third_party/WebKit/Source/platform/fonts/UTF16TextIterator.h b/third_party/WebKit/Source/platform/fonts/UTF16TextIterator.h |
index ef1c259710581f485710241d619102c867ed8247..48c5e66d381ee2dc16faff7c8377ab0397401116 100644 |
--- a/third_party/WebKit/Source/platform/fonts/UTF16TextIterator.h |
+++ b/third_party/WebKit/Source/platform/fonts/UTF16TextIterator.h |
@@ -33,8 +33,10 @@ class PLATFORM_EXPORT UTF16TextIterator { |
WTF_MAKE_NONCOPYABLE(UTF16TextIterator); |
public: |
- // The passed in UChar pointer starts at 'offset'. The iterator operates on the range [offset, endOffset]. |
- // 'length' denotes the maximum length of the UChar array, which might exceed 'endOffset'. |
+ // The passed in UChar pointer starts at 'offset'. The iterator operates on |
+ // the range [offset, endOffset]. |
+ // 'length' denotes the maximum length of the UChar array, which might exceed |
+ // 'endOffset'. |
UTF16TextIterator(const UChar*, int length); |
// FIXME: The offset/endOffset fields are only used by the SimpleShaper, |