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

Unified Diff: Source/platform/LifecycleNotifier.h

Issue 822863003: LifecycleObserver::contextDestroyed should be explicitly dispatched promptly when a context is dest… (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years 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/platform/LifecycleContext.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/LifecycleNotifier.h
diff --git a/Source/platform/LifecycleNotifier.h b/Source/platform/LifecycleNotifier.h
index 818cd931b998d9a6583f08f1bc2a21d13b8a1c87..c7d7cb094444fc26157a69cbd7de3844335d61d0 100644
--- a/Source/platform/LifecycleNotifier.h
+++ b/Source/platform/LifecycleNotifier.h
@@ -45,9 +45,12 @@ public:
return adoptPtr(new LifecycleNotifier(context));
}
+ virtual ~LifecycleNotifier()
+ {
+ ASSERT(!m_observers.size());
+ }
- virtual ~LifecycleNotifier();
-
+ void contextDestroyed();
// FIXME: this won't need to be virtual anymore.
virtual void addObserver(Observer*);
@@ -84,7 +87,7 @@ private:
};
template<typename T>
-inline LifecycleNotifier<T>::~LifecycleNotifier()
+inline void LifecycleNotifier<T>::contextDestroyed()
{
TemporaryChange<IterationType> scope(this->m_iterating, IteratingOverAll);
for (typename ObserverSet::iterator it = m_observers.begin(); it != m_observers.end(); it = m_observers.begin()) {
« no previous file with comments | « Source/platform/LifecycleContext.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698