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

Unified Diff: Source/platform/LifecycleContext.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/core/workers/WorkerGlobalScope.cpp ('k') | Source/platform/LifecycleNotifier.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/LifecycleContext.h
diff --git a/Source/platform/LifecycleContext.h b/Source/platform/LifecycleContext.h
index d2eee95e45287eb6a63c2a09c35b9b384d67f8ea..2ffe89fd28fa8b0863a9f33e567bd790e7ff3ef7 100644
--- a/Source/platform/LifecycleContext.h
+++ b/Source/platform/LifecycleContext.h
@@ -44,8 +44,16 @@ public:
typedef LifecycleNotifier<T> Notifier;
typedef LifecycleObserver<T> Observer;
- LifecycleContext() { }
- virtual ~LifecycleContext() { }
+ LifecycleContext()
+#if ENABLE(ASSERT)
+ : m_contextDestroyed(false)
+#endif
+ {
+ }
+ virtual ~LifecycleContext()
+ {
+ ASSERT(m_contextDestroyed);
+ }
virtual bool isContextThread() const { return true; }
@@ -59,11 +67,21 @@ public:
protected:
Notifier& lifecycleNotifier();
+ void contextDestroyed()
+ {
+#if ENABLE(ASSERT)
+ ASSERT(!m_contextDestroyed);
+ m_contextDestroyed = true;
+#endif
+ if (m_lifecycleNotifier)
+ m_lifecycleNotifier->contextDestroyed();
+ }
private:
PassOwnPtr<Notifier> createLifecycleNotifier();
OwnPtr<Notifier> m_lifecycleNotifier;
+ bool m_contextDestroyed;
};
template<typename T>
« no previous file with comments | « Source/core/workers/WorkerGlobalScope.cpp ('k') | Source/platform/LifecycleNotifier.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698