Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(874)

Unified Diff: Source/core/frame/PlatformEventDispatcher.h

Issue 619383002: Move PlatformEventDispatcher implementations to the Oilpan heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/core/frame/PlatformEventDispatcher.h
diff --git a/Source/core/frame/PlatformEventDispatcher.h b/Source/core/frame/PlatformEventDispatcher.h
index d05ddc9fc5a8f342fba0326b303bcf1f017cac69..4536f42dc77cbdcea77d47228c38c73d60d1b2e3 100644
--- a/Source/core/frame/PlatformEventDispatcher.h
+++ b/Source/core/frame/PlatformEventDispatcher.h
@@ -11,14 +11,15 @@
namespace blink {
class PlatformEventController;
-class PlatformEventDispatcher {
+class PlatformEventDispatcher : public GarbageCollectedMixin {
public:
void addController(PlatformEventController*);
void removeController(PlatformEventController*);
+ virtual void trace(Visitor*);
+
protected:
PlatformEventDispatcher();
- virtual ~PlatformEventDispatcher();
void notifyControllers();
@@ -28,7 +29,9 @@ protected:
private:
void purgeControllers();
- WillBePersistentHeapVector<RawPtrWillBeMember<PlatformEventController> > m_controllers;
+ void clearWeakMembers(Visitor*);
+
+ HeapVector<PlatformEventController*> m_controllers;
haraken 2014/10/03 01:55:33 I'd prefer using HeapVector<WeakMember<PlatformEve
sof 2014/10/03 05:05:29 Do we support WeakMember<> in HeapVector<> ?
haraken 2014/10/03 05:36:01 oh, you're right.
bool m_needsPurge;
bool m_isDispatching;
};
« no previous file with comments | « no previous file | Source/core/frame/PlatformEventDispatcher.cpp » ('j') | Source/core/frame/PlatformEventDispatcher.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698