Bug 835752 - EventQueue shouldn't keep a strong reference to DocAccessible instance, r=tbsaunde

This commit is contained in:
Alexander Surkov 2013-02-23 21:33:11 +09:00
parent fb1d64c454
commit ac4f3b5ffa
2 changed files with 1 additions and 2 deletions

View File

@ -75,7 +75,7 @@ protected:
/**
* The document accessible reference owning this queue.
*/
nsRefPtr<DocAccessible> mDocument;
DocAccessible* mDocument;
/**
* Pending events array. Don't make this an nsAutoTArray; we use

View File

@ -54,7 +54,6 @@ NS_IMPL_CYCLE_COLLECTION_UNLINK_BEGIN(NotificationController)
NS_IMPL_CYCLE_COLLECTION_UNLINK_END
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_BEGIN(NotificationController)
NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mDocument)
NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mHangingChildDocuments)
NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mContentInsertions)
NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mEvents)