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

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

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.cpp
diff --git a/Source/core/frame/PlatformEventDispatcher.cpp b/Source/core/frame/PlatformEventDispatcher.cpp
index 397d7881752d3dd435ddd6410d8a191368f72f71..5ed4d87af28dcbcb787c21c39ce6249fe219e0f9 100644
--- a/Source/core/frame/PlatformEventDispatcher.cpp
+++ b/Source/core/frame/PlatformEventDispatcher.cpp
@@ -16,10 +16,6 @@ PlatformEventDispatcher::PlatformEventDispatcher()
{
}
-PlatformEventDispatcher::~PlatformEventDispatcher()
-{
-}
-
void PlatformEventDispatcher::addController(PlatformEventController* controller)
{
bool wasEmpty = m_controllers.isEmpty();
@@ -84,4 +80,21 @@ void PlatformEventDispatcher::notifyControllers()
purgeControllers();
}
+void PlatformEventDispatcher::trace(Visitor* visitor)
+{
+ visitor->trace(m_controllers);
haraken 2014/10/03 01:55:33 Why do you trace m_controllers? If we trace m_cont
sof 2014/10/03 05:05:29 It's a HeapVector<> of PlatformEventController* -
haraken 2014/10/03 05:36:01 Makes sense. Shall we add a comment?
sof 2014/10/03 06:34:04 Done. I incorrectly assumed that PlatformEventCo
haraken 2014/10/03 10:10:56 Can we move DeviceSingleWindowEventController, Nav
sof 2014/10/03 10:27:11 NavigatorGamepad is a navigator supplement, so we
+ visitor->registerWeakMembers<PlatformEventDispatcher, &PlatformEventDispatcher::clearWeakMembers>(this);
+}
+
+void PlatformEventDispatcher::clearWeakMembers(Visitor* visitor)
+{
+ for (size_t i = 0; i < m_controllers.size(); ++i) {
+ if (!visitor->isAlive(m_controllers[i])) {
+ m_controllers[i] = nullptr;
+ m_needsPurge = true;
+ }
+ }
+ // Next notification will purge the empty slots.
+}
+
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698