reflow comments in wtf/typed_arrays

BUG=563793

Review-Url: https://codereview.chromium.org/2389503002
Cr-Commit-Position: refs/heads/master@{#422299}
diff --git a/third_party/WebKit/Source/wtf/typed_arrays/ArrayBuffer.h b/third_party/WebKit/Source/wtf/typed_arrays/ArrayBuffer.h
index 34c100f..6abd135 100644
--- a/third_party/WebKit/Source/wtf/typed_arrays/ArrayBuffer.h
+++ b/third_party/WebKit/Source/wtf/typed_arrays/ArrayBuffer.h
@@ -49,8 +49,8 @@
   static inline PassRefPtr<ArrayBuffer> createOrNull(unsigned numElements,
                                                      unsigned elementByteSize);
 
-  // Only for use by XMLHttpRequest::responseArrayBuffer and Internals::serializeObject
-  // (through DOMArrayBuffer::createUninitialized).
+  // Only for use by XMLHttpRequest::responseArrayBuffer and
+  // Internals::serializeObject (through DOMArrayBuffer::createUninitialized).
   static inline PassRefPtr<ArrayBuffer> createUninitialized(
       unsigned numElements,
       unsigned elementByteSize);
@@ -121,7 +121,8 @@
 }
 
 PassRefPtr<ArrayBuffer> ArrayBuffer::create(ArrayBuffer* other) {
-  // TODO(binji): support creating a SharedArrayBuffer by copying another ArrayBuffer?
+  // TODO(binji): support creating a SharedArrayBuffer by copying another
+  // ArrayBuffer?
   ASSERT(!other->isShared());
   return ArrayBuffer::create(other->data(), other->byteLength());
 }
diff --git a/third_party/WebKit/Source/wtf/typed_arrays/ArrayBufferContents.h b/third_party/WebKit/Source/wtf/typed_arrays/ArrayBufferContents.h
index 23c885d2..c53131a 100644
--- a/third_party/WebKit/Source/wtf/typed_arrays/ArrayBufferContents.h
+++ b/third_party/WebKit/Source/wtf/typed_arrays/ArrayBufferContents.h
@@ -58,10 +58,10 @@
                       ArrayBufferContents::InitializationPolicy);
 
   // Use with care. data must be allocated with allocateMemory.
-  // ArrayBufferContents will take ownership of the data and free it (using freeMemory)
-  // upon destruction.
-  // This constructor will not call observer->StartObserving(), so it is a responsibility
-  // of the caller to make sure JS knows about external memory.
+  // ArrayBufferContents will take ownership of the data and free it (using
+  // freeMemory) upon destruction.
+  // This constructor will not call observer->StartObserving(), so it is a
+  // responsibility of the caller to make sure JS knows about external memory.
   ArrayBufferContents(void* data, unsigned sizeInBytes, SharingType isShared);
 
   ~ArrayBufferContents();