| Index: Source/core/frame/PlatformEventDispatcher.h
|
| diff --git a/Source/core/frame/PlatformEventDispatcher.h b/Source/core/frame/PlatformEventDispatcher.h
|
| index 406cf680ce7854cba0fbdfae4347f7baf5ba17a8..d05ddc9fc5a8f342fba0326b303bcf1f017cac69 100644
|
| --- a/Source/core/frame/PlatformEventDispatcher.h
|
| +++ b/Source/core/frame/PlatformEventDispatcher.h
|
| @@ -5,6 +5,7 @@
|
| #ifndef PlatformEventDispatcher_h
|
| #define PlatformEventDispatcher_h
|
|
|
| +#include "platform/heap/Handle.h"
|
| #include "wtf/Vector.h"
|
|
|
| namespace blink {
|
| @@ -27,7 +28,7 @@ protected:
|
| private:
|
| void purgeControllers();
|
|
|
| - Vector<PlatformEventController*> m_controllers;
|
| + WillBePersistentHeapVector<RawPtrWillBeMember<PlatformEventController> > m_controllers;
|
| bool m_needsPurge;
|
| bool m_isDispatching;
|
| };
|
|
|