Index: third_party/WebKit/Source/platform/SharedBufferTest.cpp |
diff --git a/third_party/WebKit/Source/platform/SharedBufferTest.cpp b/third_party/WebKit/Source/platform/SharedBufferTest.cpp |
index 39f00447ee6c2e0b06c00fcf1f110ceb06f9b9b1..5fd2f567c0cc35672fc78455090c4d1a46281f2c 100644 |
--- a/third_party/WebKit/Source/platform/SharedBufferTest.cpp |
+++ b/third_party/WebKit/Source/platform/SharedBufferTest.cpp |
@@ -130,7 +130,8 @@ TEST(SharedBufferTest, copy) { |
sharedBuffer->append(testData.data(), length); |
sharedBuffer->append(testData.data(), length); |
sharedBuffer->append(testData.data(), length); |
- // sharedBuffer must contain data more than segmentSize (= 0x1000) to check copy(). |
+ // sharedBuffer must contain data more than segmentSize (= 0x1000) to check |
+ // copy(). |
ASSERT_EQ(length * 4, sharedBuffer->size()); |
RefPtr<SharedBuffer> clone = sharedBuffer->copy(); |
@@ -146,8 +147,8 @@ TEST(SharedBufferTest, constructorWithSizeOnly) { |
RefPtr<SharedBuffer> sharedBuffer = SharedBuffer::create(length); |
ASSERT_EQ(length, sharedBuffer->size()); |
- // The internal flat buffer should have been resized to |length| therefore getSomeData() should |
- // directly return the full size. |
+ // The internal flat buffer should have been resized to |length| therefore |
+ // getSomeData() should directly return the full size. |
const char* data; |
ASSERT_EQ(length, sharedBuffer->getSomeData(data, static_cast<size_t>(0u))); |
} |