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

Unified Diff: Source/platform/LifecycleNotifier.h

Issue 960223002: Detach SpeechRecognitionController upon page detach. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Adjust assert and allow repeated observer detaches Created 5 years, 10 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/platform/LifecycleNotifier.h
diff --git a/Source/platform/LifecycleNotifier.h b/Source/platform/LifecycleNotifier.h
index 64fbb7998f0359ded1380771547e3b26109782e9..239c450eed805224746892a029f9d02dbc66703b 100644
--- a/Source/platform/LifecycleNotifier.h
+++ b/Source/platform/LifecycleNotifier.h
@@ -65,6 +65,8 @@ protected:
{
}
+ void detachObservers();
+
Context* context() const { return m_context; }
enum IterationType {
@@ -93,12 +95,18 @@ inline LifecycleNotifier<T>::~LifecycleNotifier()
// ASSERT(!m_observers.size() || m_didCallContextDestroyed);
#if !ENABLE(OILPAN)
+ detachObservers();
+#endif
+}
+
+template<typename T>
+inline void LifecycleNotifier<T>::detachObservers()
+{
TemporaryChange<IterationType> scope(this->m_iterating, IteratingOverAll);
for (Observer* observer : m_observers) {
- ASSERT(observer->lifecycleContext() == m_context);
+ ASSERT(!observer->lifecycleContext() || observer->lifecycleContext() == m_context);
observer->clearLifecycleContext();
}
-#endif
}
template<typename T>
« Source/core/page/Page.cpp ('K') | « Source/modules/speech/SpeechRecognitionController.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698