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