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 |