| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. | 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 */ | 25 */ |
| 26 | 26 |
| 27 #include "config.h" | 27 #include "config.h" |
| 28 #include "core/dom/ContextLifecycleObserver.h" | 28 #include "core/dom/ContextLifecycleObserver.h" |
| 29 | 29 |
| 30 #include "core/dom/ScriptExecutionContext.h" | 30 #include "core/dom/ScriptExecutionContext.h" |
| 31 | 31 |
| 32 namespace WebCore { | 32 namespace WebCore { |
| 33 | 33 |
| 34 ContextLifecycleObserver::ContextLifecycleObserver(ScriptExecutionContext* scrip
tExecutionContext, Type type) | 34 ContextLifecycleObserver::ContextLifecycleObserver(ScriptExecutionContext* scrip
tExecutionContext, Type type) |
| 35 : m_scriptExecutionContext(0) | 35 : LifecycleObserver(scriptExecutionContext) |
| 36 , m_scriptExecutionContext(0) |
| 36 { | 37 { |
| 37 observeContext(scriptExecutionContext, type); | 38 observeContext(scriptExecutionContext, type); |
| 38 } | 39 } |
| 39 | 40 |
| 40 ContextLifecycleObserver::~ContextLifecycleObserver() | 41 ContextLifecycleObserver::~ContextLifecycleObserver() |
| 41 { | 42 { |
| 42 if (m_scriptExecutionContext) | 43 if (m_scriptExecutionContext) |
| 43 observeContext(0, GenericType); | 44 observeContext(0, GenericType); |
| 44 } | 45 } |
| 45 | 46 |
| 46 void ContextLifecycleObserver::observeContext(ScriptExecutionContext* scriptExec
utionContext, Type as) | 47 void ContextLifecycleObserver::observeContext(ScriptExecutionContext* scriptExec
utionContext, Type as) |
| 47 { | 48 { |
| 48 if (m_scriptExecutionContext) { | 49 if (m_scriptExecutionContext) { |
| 49 ASSERT(m_scriptExecutionContext->isContextThread()); | 50 ASSERT(m_scriptExecutionContext->isContextThread()); |
| 50 m_scriptExecutionContext->wasUnobservedBy(this, as); | 51 m_scriptExecutionContext->wasUnobservedBy(this, as); |
| 51 } | 52 } |
| 52 | 53 |
| 53 m_scriptExecutionContext = scriptExecutionContext; | 54 m_scriptExecutionContext = scriptExecutionContext; |
| 55 m_lifecycleContext = scriptExecutionContext; |
| 54 | 56 |
| 55 if (m_scriptExecutionContext) { | 57 if (m_scriptExecutionContext) { |
| 56 ASSERT(m_scriptExecutionContext->isContextThread()); | 58 ASSERT(m_scriptExecutionContext->isContextThread()); |
| 57 m_scriptExecutionContext->wasObservedBy(this, as); | 59 m_scriptExecutionContext->wasObservedBy(this, as); |
| 58 } | 60 } |
| 59 } | 61 } |
| 60 | 62 |
| 61 void ContextLifecycleObserver::contextDestroyed() | 63 void ContextLifecycleObserver::contextDestroyed() |
| 62 { | 64 { |
| 63 m_scriptExecutionContext = 0; | 65 m_scriptExecutionContext = 0; |
| 66 |
| 67 LifecycleObserver::contextDestroyed(); |
| 64 } | 68 } |
| 65 | 69 |
| 66 } // namespace WebCore | 70 } // namespace WebCore |
| OLD | NEW |