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

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

Issue 2386843002: reflow comments in wtf (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/wtf/DequeTest.cpp
diff --git a/third_party/WebKit/Source/wtf/DequeTest.cpp b/third_party/WebKit/Source/wtf/DequeTest.cpp
index 3d0c34c3cd88f0f1d1ad08b5f8c4723370793ad7..7c376a89ae24c68fb1168cf0eb6fe74eb0bef8ad 100644
--- a/third_party/WebKit/Source/wtf/DequeTest.cpp
+++ b/third_party/WebKit/Source/wtf/DequeTest.cpp
@@ -557,8 +557,9 @@ class CountCopy final {
};
TEST(DequeTest, MoveShouldNotMakeCopy) {
- // Because data in inline buffer may be swapped or moved individually, we force the creation of out-of-line buffer
- // so we can make sure there's no element-wise copy/move.
+ // Because data in inline buffer may be swapped or moved individually, we
+ // force the creation of out-of-line buffer so we can make sure there's no
+ // element-wise copy/move.
Deque<CountCopy, 1> deque;
int counter = 0;
deque.append(CountCopy(&counter));

Powered by Google App Engine
This is Rietveld 408576698