Index: Source/modules/webdatabase/SQLCallbackWrapper.h |
diff --git a/Source/modules/webdatabase/SQLCallbackWrapper.h b/Source/modules/webdatabase/SQLCallbackWrapper.h |
index 53d43b6a2f73cf359c7b1c63e0f223d24dd1e12e..d3701d4e345aacd8ac701551c348d1a7bdece264 100644 |
--- a/Source/modules/webdatabase/SQLCallbackWrapper.h |
+++ b/Source/modules/webdatabase/SQLCallbackWrapper.h |
@@ -56,7 +56,8 @@ |
clear(); |
} |
- void trace(Visitor* visitor) { visitor->trace(m_executionContext); } |
+ // FIXME: Oilpan: Trace m_executionContext. |
+ void trace(Visitor* visitor) { } |
void clear() |
{ |
@@ -129,7 +130,7 @@ |
Mutex m_mutex; |
OwnPtr<T> m_callback; |
- RefPtrWillBeMember<ExecutionContext> m_executionContext; |
+ RefPtr<ExecutionContext> m_executionContext; |
}; |
} // namespace WebCore |