Upstream version 5.34.104.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / modules / crypto / Crypto.cpp
index 255a2b6..5d4821c 100644 (file)
@@ -37,6 +37,8 @@
 
 namespace WebCore {
 
+DEFINE_GC_INFO(Crypto);
+
 namespace {
 
 bool isIntegerArray(ArrayBufferView* array)
@@ -83,4 +85,9 @@ SubtleCrypto* Crypto::subtle()
     return m_subtleCrypto.get();
 }
 
+void Crypto::trace(Visitor* visitor)
+{
+    visitor->trace(m_subtleCrypto);
+}
+
 }