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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/ScriptWrappableVisitor.h

Issue 2743023002: Migrate WTF::Deque::append() to ::push_back() (Closed)
Patch Set: rebase 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/bindings/core/v8/ScriptWrappableVisitor.h
diff --git a/third_party/WebKit/Source/bindings/core/v8/ScriptWrappableVisitor.h b/third_party/WebKit/Source/bindings/core/v8/ScriptWrappableVisitor.h
index aebeafdfc708d53e37058dda313c24bb64e38001..a8763a8eeb07fc6b387d303ec8a469b38e74f240 100644
--- a/third_party/WebKit/Source/bindings/core/v8/ScriptWrappableVisitor.h
+++ b/third_party/WebKit/Source/bindings/core/v8/ScriptWrappableVisitor.h
@@ -172,11 +172,11 @@ class CORE_EXPORT ScriptWrappableVisitor : public v8::EmbedderHeapTracer,
if (!m_tracingInProgress)
return false;
- m_markingDeque.append(WrapperMarkingData(traceWrappersCallback,
- heapObjectHeaderCallback, object));
+ m_markingDeque.push_back(WrapperMarkingData(
+ traceWrappersCallback, heapObjectHeaderCallback, object));
#if DCHECK_IS_ON()
if (!m_advancingTracing) {
- m_verifierDeque.append(WrapperMarkingData(
+ m_verifierDeque.push_back(WrapperMarkingData(
traceWrappersCallback, heapObjectHeaderCallback, object));
}
#endif
« no previous file with comments | « third_party/WebKit/Source/bindings/core/v8/ScriptStreamer.cpp ('k') | third_party/WebKit/Source/core/css/CSSFontFace.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698