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

Unified Diff: third_party/WebKit/Source/platform/heap/HeapTest.cpp

Issue 2502413004: WTF/std normalization: replace WTF::Vector::last with ::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/heap/HeapTest.cpp
diff --git a/third_party/WebKit/Source/platform/heap/HeapTest.cpp b/third_party/WebKit/Source/platform/heap/HeapTest.cpp
index 0cb7a06014f512634b0b52a70df052e26d19fece..5570f70fb115788ddbc9fda0c0b7dc89217792d4 100644
--- a/third_party/WebKit/Source/platform/heap/HeapTest.cpp
+++ b/third_party/WebKit/Source/platform/heap/HeapTest.cpp
@@ -485,7 +485,7 @@ class ThreadedTesterBase {
for (int i = 0; i < numberOfThreads; i++) {
m_threads.append(wrapUnique(
Platform::current()->createThread("blink gc testing thread")));
- m_threads.last()->getWebTaskRunner()->postTask(
+ m_threads.back()->getWebTaskRunner()->postTask(
BLINK_FROM_HERE,
crossThreadBind(threadFunc, crossThreadUnretained(tester)));
}

Powered by Google App Engine
This is Rietveld 408576698