summaryrefslogtreecommitdiffstats
path: root/dom/indexedDB/IDBFileHandle.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'dom/indexedDB/IDBFileHandle.cpp')
-rw-r--r--dom/indexedDB/IDBFileHandle.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/dom/indexedDB/IDBFileHandle.cpp b/dom/indexedDB/IDBFileHandle.cpp
index 8b88e1722..93e163c11 100644
--- a/dom/indexedDB/IDBFileHandle.cpp
+++ b/dom/indexedDB/IDBFileHandle.cpp
@@ -127,12 +127,12 @@ IDBFileHandle::Run()
}
nsresult
-IDBFileHandle::PreHandleEvent(EventChainPreVisitor& aVisitor)
+IDBFileHandle::GetEventTargetParent(EventChainPreVisitor& aVisitor)
{
AssertIsOnOwningThread();
aVisitor.mCanHandle = true;
- aVisitor.mParentTarget = mMutableFile;
+ aVisitor.SetParentTarget(mMutableFile, false);
return NS_OK;
}