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

Unified Diff: Source/core/dom/MessageChannel.cpp

Issue 319183007: Oilpan: move MessageChannel to the heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 6 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 | « Source/core/dom/MessageChannel.h ('k') | Source/core/dom/MessageChannel.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/MessageChannel.cpp
diff --git a/Source/core/dom/MessageChannel.cpp b/Source/core/dom/MessageChannel.cpp
index 2530e65cf47100a1550114e4af191daa479e88ff..0131a3b65816412eb95e7a5b443f626ae1a15661 100644
--- a/Source/core/dom/MessageChannel.cpp
+++ b/Source/core/dom/MessageChannel.cpp
@@ -57,4 +57,10 @@ MessageChannel::~MessageChannel()
{
}
+void MessageChannel::trace(Visitor* visitor)
+{
+ visitor->trace(m_port1);
+ visitor->trace(m_port2);
+}
+
} // namespace WebCore
« no previous file with comments | « Source/core/dom/MessageChannel.h ('k') | Source/core/dom/MessageChannel.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698