1e1f1df5f01594c0e62e751e4b46e779b85c2faa5Torne (Richard Coles)
25c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)/*
3e1f1df5f01594c0e62e751e4b46e779b85c2faa5Torne (Richard Coles) * Copyright (C) 2013 Google Inc. All Rights Reserved.
45c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *
55c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * Redistribution and use in source and binary forms, with or without
65c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * modification, are permitted provided that the following conditions
75c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * are met:
85c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * 1. Redistributions of source code must retain the above copyright
95c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *    notice, this list of conditions and the following disclaimer.
105c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * 2. Redistributions in binary form must reproduce the above copyright
115c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *    notice, this list of conditions and the following disclaimer in the
125c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *    documentation and/or other materials provided with the distribution.
135c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *
145c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
155c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
165c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
175c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
185c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
195c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
205c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
215c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
225c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
235c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2402772c6a72f1ee0b226341a4f4439970c29fc861Ben Murdoch * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
255c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) */
265c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
27e1f1df5f01594c0e62e751e4b46e779b85c2faa5Torne (Richard Coles)#ifndef DOMWindowLifecycleObserver_h
28e1f1df5f01594c0e62e751e4b46e779b85c2faa5Torne (Richard Coles)#define DOMWindowLifecycleObserver_h
29e1f1df5f01594c0e62e751e4b46e779b85c2faa5Torne (Richard Coles)
30f79f16f17ddc4f842d7b7a38603e280e94be826aTorne (Richard Coles)#include "platform/LifecycleObserver.h"
31c0e19a689c8ac22cdc96b291a8d33a5d3b0b34a4Torne (Richard Coles)#include "wtf/text/WTFString.h"
325c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
33c1847b1379d12d0e05df27436bf19a9b1bf12deaTorne (Richard Coles)namespace blink {
345c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
3576c265b59aa821ccbf8c75ab2bb0d036e97d2956Torne (Richard Coles)class LocalDOMWindow;
36e1f1df5f01594c0e62e751e4b46e779b85c2faa5Torne (Richard Coles)
3776c265b59aa821ccbf8c75ab2bb0d036e97d2956Torne (Richard Coles)template<> void observerContext(LocalDOMWindow*, LifecycleObserver<LocalDOMWindow>*);
3876c265b59aa821ccbf8c75ab2bb0d036e97d2956Torne (Richard Coles)template<> void unobserverContext(LocalDOMWindow*, LifecycleObserver<LocalDOMWindow>*);
39f79f16f17ddc4f842d7b7a38603e280e94be826aTorne (Richard Coles)
4076c265b59aa821ccbf8c75ab2bb0d036e97d2956Torne (Richard Coles)class DOMWindowLifecycleObserver : public LifecycleObserver<LocalDOMWindow> {
41e1f1df5f01594c0e62e751e4b46e779b85c2faa5Torne (Richard Coles)public:
4276c265b59aa821ccbf8c75ab2bb0d036e97d2956Torne (Richard Coles)    explicit DOMWindowLifecycleObserver(LocalDOMWindow*);
43e1f1df5f01594c0e62e751e4b46e779b85c2faa5Torne (Richard Coles)    virtual ~DOMWindowLifecycleObserver();
44e1f1df5f01594c0e62e751e4b46e779b85c2faa5Torne (Richard Coles)
4576c265b59aa821ccbf8c75ab2bb0d036e97d2956Torne (Richard Coles)    LocalDOMWindow* window() const;
46e1f1df5f01594c0e62e751e4b46e779b85c2faa5Torne (Richard Coles)
4776c265b59aa821ccbf8c75ab2bb0d036e97d2956Torne (Richard Coles)    virtual void didAddEventListener(LocalDOMWindow*, const AtomicString&) { }
4876c265b59aa821ccbf8c75ab2bb0d036e97d2956Torne (Richard Coles)    virtual void didRemoveEventListener(LocalDOMWindow*, const AtomicString&) { }
4976c265b59aa821ccbf8c75ab2bb0d036e97d2956Torne (Richard Coles)    virtual void didRemoveAllEventListeners(LocalDOMWindow*) { }
50e1f1df5f01594c0e62e751e4b46e779b85c2faa5Torne (Richard Coles)};
51e1f1df5f01594c0e62e751e4b46e779b85c2faa5Torne (Richard Coles)
52c1847b1379d12d0e05df27436bf19a9b1bf12deaTorne (Richard Coles)} // namespace blink
53e1f1df5f01594c0e62e751e4b46e779b85c2faa5Torne (Richard Coles)
54e1f1df5f01594c0e62e751e4b46e779b85c2faa5Torne (Richard Coles)#endif // DOMWindowLifecycleObserver_h
55