blob: ee456885bbce9691c6dde1452e44e26ff99d7a14 [file] [log] [blame]
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +01001/*
Torne (Richard Coles)521d96e2013-06-19 11:58:24 +01002 * Copyright (C) 2013 Google Inc. All Rights Reserved.
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +01003 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
12 *
13 * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Torne (Richard Coles)521d96e2013-06-19 11:58:24 +010023 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010024 */
25
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010026
Torne (Richard Coles)521d96e2013-06-19 11:58:24 +010027#include "config.h"
28#include "core/dom/DocumentLifecycleObserver.h"
29
30#include "core/dom/Document.h"
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010031
32namespace WebCore {
Torne (Richard Coles)521d96e2013-06-19 11:58:24 +010033
34DocumentLifecycleObserver::DocumentLifecycleObserver(Document* document)
Ben Murdoch591b9582013-07-10 11:41:44 +010035 : ContextLifecycleObserver(document, DocumentLifecycleObserverType)
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010036{
37}
38
Ben Murdoch591b9582013-07-10 11:41:44 +010039DocumentLifecycleObserver::~DocumentLifecycleObserver()
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010040{
Ben Murdoch591b9582013-07-10 11:41:44 +010041 observeContext(0, DocumentLifecycleObserverType);
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010042}
43
Ben Murdoch591b9582013-07-10 11:41:44 +010044DocumentLifecycleNotifier::DocumentLifecycleNotifier(ScriptExecutionContext* context)
45 : ContextLifecycleNotifier(context)
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010046{
Ben Murdoch591b9582013-07-10 11:41:44 +010047}
48
Ben Murdoch0019e4e2013-07-18 11:57:54 +010049void DocumentLifecycleNotifier::addObserver(LifecycleObserver* observer, LifecycleObserver::Type type)
Ben Murdoch591b9582013-07-10 11:41:44 +010050{
Ben Murdoch0019e4e2013-07-18 11:57:54 +010051 if (type == LifecycleObserver::DocumentLifecycleObserverType) {
Ben Murdoch591b9582013-07-10 11:41:44 +010052 RELEASE_ASSERT(m_iterating != IteratingOverDocumentObservers);
53 m_documentObservers.add(static_cast<DocumentLifecycleObserver*>(observer));
54 }
55
Ben Murdoch0019e4e2013-07-18 11:57:54 +010056 ContextLifecycleNotifier::addObserver(observer, type);
Ben Murdoch591b9582013-07-10 11:41:44 +010057}
58
Ben Murdoch0019e4e2013-07-18 11:57:54 +010059void DocumentLifecycleNotifier::removeObserver(LifecycleObserver* observer, LifecycleObserver::Type type)
Ben Murdoch591b9582013-07-10 11:41:44 +010060{
Ben Murdoch0019e4e2013-07-18 11:57:54 +010061 if (type == LifecycleObserver::DocumentLifecycleObserverType) {
Ben Murdoch591b9582013-07-10 11:41:44 +010062 RELEASE_ASSERT(m_iterating != IteratingOverDocumentObservers);
63 m_documentObservers.remove(static_cast<DocumentLifecycleObserver*>(observer));
64 }
65
Ben Murdoch0019e4e2013-07-18 11:57:54 +010066 ContextLifecycleNotifier::removeObserver(observer, type);
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010067}
68
69} // namespace WebCore