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

Side by Side Diff: Source/core/dom/LifecycleNotifier.h

Issue 18777003: Extract simpler classes for observing context lifecycle and observe Page lifecycle inNavigatorVibra… (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Ensure m_scriptExecutionContext is maintained and not just null. Created 7 years, 5 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 unified diff | Download patch
OLDNEW
(Empty)
1 /*
2 * Copyright (C) 2008 Apple Inc. All Rights Reserved.
3 * Copyright (C) 2013 Google Inc. All Rights Reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 *
14 * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
15 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
18 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
19 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
20 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
21 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
22 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 *
26 */
27 #ifndef LifecycleNotifier_h
28 #define LifecycleNotifier_h
29
30 #include "core/dom/LifecycleObserver.h"
31 #include "wtf/HashSet.h"
32 #include "wtf/PassOwnPtr.h"
33
34 namespace WebCore {
35
36 class LifecycleContext;
37 class LifecycleObserver;
38
39 class LifecycleNotifier {
40 public:
41 static PassOwnPtr<LifecycleNotifier> create(LifecycleContext*);
42
43 virtual ~LifecycleNotifier();
44
45 typedef HashSet<LifecycleObserver*> SimpleObserverSet;
abarth-chromium 2013/07/09 18:27:52 SimpleObserverSet -> ObserverSet Can this type be
Michael van Ouwerkerk 2013/07/10 13:25:09 Done and done.
46
47 virtual void addObserver(LifecycleObserver*, LifecycleObserver::Type);
48 virtual void removeObserver(LifecycleObserver*, LifecycleObserver::Type);
49
50 protected:
51 explicit LifecycleNotifier(LifecycleContext*);
52
53 LifecycleContext* context();
54
55 enum IterationType {
56 IteratingNone,
57 IteratingOverActiveDOMObjects,
58 IteratingOverContextObservers,
59 IteratingOverDocumentObservers,
60 IteratingOverPageObservers
61 };
62
63 IterationType m_iterating;
64
65 private:
66 SimpleObserverSet m_observers;
67 LifecycleContext* m_context;
68 bool m_inDestructor;
69 };
70
71 inline PassOwnPtr<LifecycleNotifier> LifecycleNotifier::create(LifecycleContext* context)
72 {
73 return adoptPtr(new LifecycleNotifier(context));
74 }
75
76 } // namespace WebCore
77
78 #endif // LifecycleNotifier_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698