Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(124)

Unified Diff: third_party/WebKit/Source/platform/SharedBufferTest.cpp

Issue 2388303002: reflow comments in platform/ (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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)));
}
« no previous file with comments | « third_party/WebKit/Source/platform/SharedBufferChunkReader.h ('k') | third_party/WebKit/Source/platform/Supplementable.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698