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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/ScriptWrappableVisitorTest.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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/css/CSSFontFace.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/bindings/core/v8/ScriptWrappableVisitorTest.cpp
diff --git a/third_party/WebKit/Source/bindings/core/v8/ScriptWrappableVisitorTest.cpp b/third_party/WebKit/Source/bindings/core/v8/ScriptWrappableVisitorTest.cpp
index bd78c6c66c9bd38bbc447af9c93c812c5793e298..bf7d7737e2a949bccc90312bcaeeb46385d70282 100644
--- a/third_party/WebKit/Source/bindings/core/v8/ScriptWrappableVisitorTest.cpp
+++ b/third_party/WebKit/Source/bindings/core/v8/ScriptWrappableVisitorTest.cpp
@@ -171,11 +171,11 @@ TEST(ScriptWrappableVisitorTest, OilpanClearsMarkingDequeWhenObjectDied) {
visitor->markAndPushToMarkingDeque(object);
- EXPECT_EQ(visitor->getMarkingDeque()->first().rawObjectPointer(), object);
+ EXPECT_EQ(visitor->getMarkingDeque()->front().rawObjectPointer(), object);
preciselyCollectGarbage();
- EXPECT_EQ(visitor->getMarkingDeque()->first().rawObjectPointer(), nullptr);
+ EXPECT_EQ(visitor->getMarkingDeque()->front().rawObjectPointer(), nullptr);
visitor->AbortTracing();
}
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/css/CSSFontFace.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698