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

Unified Diff: third_party/WebKit/Source/wtf/VectorTest.cpp

Issue 2386843002: reflow comments in wtf (Closed)
Patch Set: comments (heh!) 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
« no previous file with comments | « third_party/WebKit/Source/wtf/Vector.h ('k') | third_party/WebKit/Source/wtf/VectorTraits.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/wtf/VectorTest.cpp
diff --git a/third_party/WebKit/Source/wtf/VectorTest.cpp b/third_party/WebKit/Source/wtf/VectorTest.cpp
index 5a5d94fae90b9d3010527c0fe45df309c4648d8b..cda277e65be7463c0f11c3929b69cf9ebd4518b0 100644
--- a/third_party/WebKit/Source/wtf/VectorTest.cpp
+++ b/third_party/WebKit/Source/wtf/VectorTest.cpp
@@ -440,8 +440,8 @@ TEST(VectorTest, AppendFirst) {
//
// https://bugs.chromium.org/p/chromium/issues/detail?id=592767
//
-// where deleted copy assignment operator made canMoveWithMemcpy true because of the implementation of
-// IsTriviallyMoveAssignable<T>.
+// where deleted copy assignment operator made canMoveWithMemcpy true because
+// of the implementation of IsTriviallyMoveAssignable<T>.
class MojoMoveOnlyType final {
public:
@@ -631,11 +631,13 @@ TEST(VectorTest, InitializerList) {
EXPECT_EQ(2, oneTwoThree[1]);
EXPECT_EQ(3, oneTwoThree[2]);
- // Other ways of construction: as a function parameter and in a return statement.
+ // Other ways of construction: as a function parameter and in a return
+ // statement.
EXPECT_TRUE(isOneTwoThree({1, 2, 3}));
EXPECT_TRUE(isOneTwoThree(returnOneTwoThree()));
- // The tests below correspond to the cases in the "if" branch in operator=(std::initializer_list<T>).
+ // The tests below correspond to the cases in the "if" branch in
+ // operator=(std::initializer_list<T>).
// Shrinking.
Vector<int, 1> vector1(3); // capacity = 3.
« no previous file with comments | « third_party/WebKit/Source/wtf/Vector.h ('k') | third_party/WebKit/Source/wtf/VectorTraits.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698