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

Unified Diff: third_party/WebKit/Source/platform/graphics/ContiguousContainerTest.cpp

Issue 2459003003: WTF/std normalization: replace WTF::Vector::removeLast with ::pop_back (Closed)
Patch Set: rebase Created 4 years, 1 month 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/graphics/ContiguousContainerTest.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/ContiguousContainerTest.cpp b/third_party/WebKit/Source/platform/graphics/ContiguousContainerTest.cpp
index 7396543462df6a434481f4d4c93f923feed5f08e..cd94ba0cf895df70d4fe746703fdbf25f233e2c2 100644
--- a/third_party/WebKit/Source/platform/graphics/ContiguousContainerTest.cpp
+++ b/third_party/WebKit/Source/platform/graphics/ContiguousContainerTest.cpp
@@ -286,7 +286,7 @@ TEST(ContiguousContainerTest, IterationAfterRemoveLast) {
pointers.append(&list.allocateAndConstruct<SmallStruct>());
};
auto pop = [&list, &pointers]() {
- pointers.removeLast();
+ pointers.pop_back();
list.removeLast();
};
auto check_equal = [&list, &pointers]() {

Powered by Google App Engine
This is Rietveld 408576698