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

Unified Diff: third_party/WebKit/Source/core/xml/parser/SharedBufferReaderTest.cpp

Issue 2701993002: DO NOT COMMIT: Results of running new (proposed) clang-format on Blink (Closed)
Patch Set: Created 3 years, 10 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/core/xml/parser/SharedBufferReaderTest.cpp
diff --git a/third_party/WebKit/Source/core/xml/parser/SharedBufferReaderTest.cpp b/third_party/WebKit/Source/core/xml/parser/SharedBufferReaderTest.cpp
index fb92866fc35fe3f5526e88abe1e471508f2ad8ca..fdb177888c12b46b132ce3d1046ca9f504781bc3 100644
--- a/third_party/WebKit/Source/core/xml/parser/SharedBufferReaderTest.cpp
+++ b/third_party/WebKit/Source/core/xml/parser/SharedBufferReaderTest.cpp
@@ -63,8 +63,9 @@ TEST(SharedBufferReaderTest, readDataWithSizeBiggerThanSharedBufferSize) {
const char initializationByte = 'a';
memset(outputBuffer, initializationByte, sizeof(outputBuffer));
- EXPECT_EQ(sizeof(testData), static_cast<size_t>(reader.readData(
- outputBuffer, sizeof(outputBuffer))));
+ EXPECT_EQ(
+ sizeof(testData),
+ static_cast<size_t>(reader.readData(outputBuffer, sizeof(outputBuffer))));
EXPECT_TRUE(std::equal(testData, testData + sizeof(testData), outputBuffer));
// Check that the bytes past index sizeof(testData) were not touched.

Powered by Google App Engine
This is Rietveld 408576698