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

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
Index: Source/platform/LifecycleContext.h
diff --git a/Source/platform/LifecycleContext.h b/Source/platform/LifecycleContext.h
index d2eee95e45287eb6a63c2a09c35b9b384d67f8ea..5253e9362547a676111593272990c1a87cf6331d 100644
--- a/Source/platform/LifecycleContext.h
+++ b/Source/platform/LifecycleContext.h
@@ -45,7 +45,10 @@ public:
typedef LifecycleObserver<T> Observer;
LifecycleContext() { }
- virtual ~LifecycleContext() { }
+ virtual ~LifecycleContext()
+ {
+ ASSERT(!m_lifecycleNotifier);
sof 2014/12/26 08:21:42 Add a comment next to this to indicate what might
+ }
virtual bool isContextThread() const { return true; }
@@ -59,6 +62,13 @@ public:
protected:
Notifier& lifecycleNotifier();
+ void contextDestroyed()
sof 2014/12/26 08:21:42 nit: add an empty line.
+ {
+ if (m_lifecycleNotifier) {
+ m_lifecycleNotifier->contextDestroyed();
+ m_lifecycleNotifier.clear();
+ }
+ }
private:
PassOwnPtr<Notifier> createLifecycleNotifier();

Powered by Google App Engine
This is Rietveld 408576698