| Index: Source/core/frame/DOMWindowLifecycleNotifier.h
|
| diff --git a/Source/core/frame/DOMWindowLifecycleNotifier.h b/Source/core/frame/DOMWindowLifecycleNotifier.h
|
| index 8946a68368c6d80bd1d8188c5b82028369f25926..e652e99d9e5f9afe9536e19cc889c1b52528d68d 100644
|
| --- a/Source/core/frame/DOMWindowLifecycleNotifier.h
|
| +++ b/Source/core/frame/DOMWindowLifecycleNotifier.h
|
| @@ -34,21 +34,21 @@
|
|
|
| namespace WebCore {
|
|
|
| -class DOMWindow;
|
| +class LocalDOMWindow;
|
|
|
| -class DOMWindowLifecycleNotifier FINAL : public LifecycleNotifier<DOMWindow> {
|
| +class DOMWindowLifecycleNotifier FINAL : public LifecycleNotifier<LocalDOMWindow> {
|
| public:
|
| - static PassOwnPtr<DOMWindowLifecycleNotifier> create(DOMWindow*);
|
| + static PassOwnPtr<DOMWindowLifecycleNotifier> create(LocalDOMWindow*);
|
|
|
| - void notifyAddEventListener(DOMWindow*, const AtomicString& eventType);
|
| - void notifyRemoveEventListener(DOMWindow*, const AtomicString& eventType);
|
| - void notifyRemoveAllEventListeners(DOMWindow*);
|
| + void notifyAddEventListener(LocalDOMWindow*, const AtomicString& eventType);
|
| + void notifyRemoveEventListener(LocalDOMWindow*, const AtomicString& eventType);
|
| + void notifyRemoveAllEventListeners(LocalDOMWindow*);
|
|
|
| virtual void addObserver(Observer*) OVERRIDE;
|
| virtual void removeObserver(Observer*) OVERRIDE;
|
|
|
| private:
|
| - explicit DOMWindowLifecycleNotifier(DOMWindow*);
|
| + explicit DOMWindowLifecycleNotifier(LocalDOMWindow*);
|
|
|
| typedef HashSet<DOMWindowLifecycleObserver*> DOMWindowObserverSet;
|
| DOMWindowObserverSet m_windowObservers;
|
|
|