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

Unified Diff: Source/core/dom/ContextLifecycleObserver.cpp

Issue 1017313002: Simplify handling of LocalFrame lifecycle notifications. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: clear context on FDO::contextDestroyed() Created 5 years, 9 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/core/dom/ContextLifecycleObserver.cpp
diff --git a/Source/core/dom/ContextLifecycleObserver.cpp b/Source/core/dom/ContextLifecycleObserver.cpp
index 922fc9215476dbabac05f977ccf76348352c2d24..c54bda5b77cc47e86e6bd51dfaedf64fb080e7d5 100644
--- a/Source/core/dom/ContextLifecycleObserver.cpp
+++ b/Source/core/dom/ContextLifecycleObserver.cpp
@@ -33,14 +33,9 @@
namespace blink {
ContextLifecycleObserver::ContextLifecycleObserver(ExecutionContext* executionContext, Type type)
- : LifecycleObserver<ExecutionContext, ContextLifecycleObserver, ContextLifecycleNotifier>(executionContext)
- , m_observerType(type)
+ : m_observerType(type)
{
setContext(executionContext);
}
-ContextLifecycleObserver::~ContextLifecycleObserver()
-{
-}
-
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698