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

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

Issue 1301543002: [Oilpan] Remove a raw pointer to PlatformEventController class on Oilpan build (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Work for comments Created 5 years, 4 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
« no previous file with comments | « Source/core/frame/PlatformEventDispatcher.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/frame/PlatformEventDispatcher.cpp
diff --git a/Source/core/frame/PlatformEventDispatcher.cpp b/Source/core/frame/PlatformEventDispatcher.cpp
index b588df26190466b88d871cbc12c42ad46145b881..caa1b431203410011adc3ab74465fd358cac932b 100644
--- a/Source/core/frame/PlatformEventDispatcher.cpp
+++ b/Source/core/frame/PlatformEventDispatcher.cpp
@@ -11,95 +11,61 @@
namespace blink {
PlatformEventDispatcher::PlatformEventDispatcher()
- : m_needsPurge(false)
- , m_isDispatching(false)
+ : m_isDispatching(false)
+ , m_isListening(false)
{
}
void PlatformEventDispatcher::addController(PlatformEventController* controller)
{
- bool wasEmpty = m_controllers.isEmpty();
- if (!m_controllers.contains(controller))
- m_controllers.append(controller);
- if (wasEmpty)
+ ASSERT(controller);
+
haraken 2015/08/26 00:28:19 Add ASSERT(!m_controllers.contains(controller)).
peria 2015/08/26 04:36:14 Done.
+ m_controllers.add(controller);
+ if (!m_isListening) {
startListening();
+ m_isListening = true;
+ }
}
void PlatformEventDispatcher::removeController(PlatformEventController* controller)
{
haraken 2015/08/26 00:28:19 Add ASSERT(m_controllers.contains(controller)).
peria 2015/08/26 04:36:13 Done.
- // Do not actually remove the controller from the vector, instead zero them out.
- // The zeros are removed in these two cases:
- // 1. either immediately if we are not dispatching any events,
- // 2. or after events to all controllers have dispatched (see notifyControllers()).
- // This is to correctly handle the re-entrancy case when a controller is destroyed
- // while the events are still being dispatched.
- size_t index = m_controllers.find(controller);
- if (index == kNotFound)
- return;
-
- m_controllers[index] = nullptr;
- m_needsPurge = true;
-
- if (!m_isDispatching)
- purgeControllers();
-}
-
-void PlatformEventDispatcher::purgeControllers()
-{
- ASSERT(m_needsPurge);
-
- size_t i = 0;
- while (i < m_controllers.size()) {
- if (!m_controllers[i]) {
- m_controllers[i] = m_controllers.last();
- m_controllers.removeLast();
- } else {
- ++i;
- }
- }
-
- m_needsPurge = false;
-
- if (m_controllers.isEmpty())
+ m_controllers.remove(controller);
+ if (!m_isDispatching && m_controllers.isEmpty()) {
stopListening();
+ m_isListening = false;
+ }
}
void PlatformEventDispatcher::notifyControllers()
{
+ if (m_controllers.isEmpty())
+ return;
+
{
TemporaryChange<bool> changeIsDispatching(m_isDispatching, true);
- // Don't notify controllers removed or added during event dispatch.
- size_t size = m_controllers.size();
- for (size_t i = 0; i < size; ++i) {
- if (m_controllers[i])
- m_controllers[i]->didUpdateData();
+ // HashSet m_controllers can be updated during an iteration, and it stops the iteration.
+ // Thus we store it into a Vector to access all elements.
+ HeapVector<PlatformEventController*> snapshotVector;
haraken 2015/08/26 00:28:19 WillBeHeapVector<RawPtrWillBeMember<PlatformEventC
peria 2015/08/26 04:36:13 Done.
+ snapshotVector.reserveCapacity(m_controllers.size());
+ for (PlatformEventController* controller : m_controllers)
+ snapshotVector.append(controller);
haraken 2015/08/26 00:28:19 Can we use copyToVector?
peria 2015/08/26 04:36:13 Done.
+ for (PlatformEventController* controller : snapshotVector) {
+ if (m_controllers.contains(controller))
+ controller->didUpdateData();
}
}
- if (m_needsPurge)
- purgeControllers();
+ if (m_controllers.isEmpty()) {
+ stopListening();
+ m_isListening = false;
+ }
}
DEFINE_TRACE(PlatformEventDispatcher)
{
#if ENABLE(OILPAN)
- // Trace the backing store, the weak(&bare) element references won't be.
visitor->trace(m_controllers);
- visitor->template registerWeakMembers<PlatformEventDispatcher, &PlatformEventDispatcher::clearWeakMembers>(this);
#endif
}
-#if ENABLE(OILPAN)
-void PlatformEventDispatcher::clearWeakMembers(Visitor* visitor)
-{
- for (size_t i = 0; i < m_controllers.size(); ++i) {
- if (!Heap::isHeapObjectAlive(m_controllers[i])) {
- m_controllers[i] = nullptr;
- m_needsPurge = true;
- }
- }
- // Next notification will purge the empty slots.
-}
-#endif
-
} // namespace blink
« no previous file with comments | « Source/core/frame/PlatformEventDispatcher.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698