Chromium Code Reviews| Index: Source/core/frame/PlatformEventDispatcher.h |
| diff --git a/Source/core/frame/PlatformEventDispatcher.h b/Source/core/frame/PlatformEventDispatcher.h |
| index 18f728cf205113a2617eb3eff23ec8db9848b2fd..8535a03aae071e9bec70c3045a310ec8f48613c0 100644 |
| --- a/Source/core/frame/PlatformEventDispatcher.h |
| +++ b/Source/core/frame/PlatformEventDispatcher.h |
| @@ -30,13 +30,7 @@ protected: |
| private: |
| void purgeControllers(); |
| -#if ENABLE(OILPAN) |
| - void clearWeakMembers(Visitor*); |
| -#endif |
| - |
| - WillBeHeapVector<PlatformEventController*> m_controllers; |
| - bool m_needsPurge; |
| - bool m_isDispatching; |
|
haraken
2015/08/19 11:12:51
We cannot simply remove the purge logic. See my co
peria
2015/08/20 09:35:50
Acknowledged.
|
| + WillBeHeapHashSet<RawPtrWillBeWeakMember<PlatformEventController>> m_controllers; |
| }; |
| } // namespace blink |