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

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

Issue 2752593003: Migrate WTF::Deque::first() to ::front() (Closed)
Patch Set: one more platform specific reference Created 3 years, 9 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/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 64d69dd4dc7c4ac0332344b33a6c87fcd5555b4b..cd0ca6064b90af3a7bfe41b0a35f779154f7610a 100644
--- a/third_party/WebKit/Source/platform/heap/HeapTest.cpp
+++ b/third_party/WebKit/Source/platform/heap/HeapTest.cpp
@@ -3879,9 +3879,9 @@ TEST(HeapTest, PersistentHeapCollectionTypes) {
EXPECT_EQ(three, pVec.at(1));
EXPECT_EQ(2u, pDeque.size());
- EXPECT_EQ(seven, pDeque.first());
+ EXPECT_EQ(seven, pDeque.front());
EXPECT_EQ(seven, pDeque.takeFirst());
- EXPECT_EQ(two, pDeque.first());
+ EXPECT_EQ(two, pDeque.front());
EXPECT_EQ(1u, pDeque.size());
« no previous file with comments | « third_party/WebKit/Source/platform/graphics/gpu/SharedContextRateLimiter.cpp ('k') | third_party/WebKit/Source/wtf/Deque.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698