OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2008, 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2010 Apple Inc. All rights reserved. |
3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) | 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 #include "core/dom/ExceptionCode.h" | 48 #include "core/dom/ExceptionCode.h" |
49 #include "core/dom/ExecutionContext.h" | 49 #include "core/dom/ExecutionContext.h" |
50 #include "core/dom/RequestAnimationFrameCallback.h" | 50 #include "core/dom/RequestAnimationFrameCallback.h" |
51 #include "core/editing/Editor.h" | 51 #include "core/editing/Editor.h" |
52 #include "core/events/DOMWindowEventQueue.h" | 52 #include "core/events/DOMWindowEventQueue.h" |
53 #include "core/events/EventListener.h" | 53 #include "core/events/EventListener.h" |
54 #include "core/events/HashChangeEvent.h" | 54 #include "core/events/HashChangeEvent.h" |
55 #include "core/events/MessageEvent.h" | 55 #include "core/events/MessageEvent.h" |
56 #include "core/events/PageTransitionEvent.h" | 56 #include "core/events/PageTransitionEvent.h" |
57 #include "core/events/PopStateEvent.h" | 57 #include "core/events/PopStateEvent.h" |
58 #include "core/events/ThreadLocalEventNames.h" | |
59 #include "core/frame/BarProp.h" | 58 #include "core/frame/BarProp.h" |
60 #include "core/frame/Console.h" | 59 #include "core/frame/Console.h" |
61 #include "core/frame/DOMPoint.h" | 60 #include "core/frame/DOMPoint.h" |
62 #include "core/frame/DOMWindowLifecycleNotifier.h" | 61 #include "core/frame/DOMWindowLifecycleNotifier.h" |
63 #include "core/frame/FrameHost.h" | 62 #include "core/frame/FrameHost.h" |
64 #include "core/frame/FrameView.h" | 63 #include "core/frame/FrameView.h" |
65 #include "core/frame/History.h" | 64 #include "core/frame/History.h" |
66 #include "core/frame/LocalFrame.h" | 65 #include "core/frame/LocalFrame.h" |
67 #include "core/frame/Location.h" | 66 #include "core/frame/Location.h" |
68 #include "core/frame/Navigator.h" | 67 #include "core/frame/Navigator.h" |
(...skipping 1792 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1861 return static_cast<DOMWindowLifecycleNotifier&>(LifecycleContext<DOMWindow>:
:lifecycleNotifier()); | 1860 return static_cast<DOMWindowLifecycleNotifier&>(LifecycleContext<DOMWindow>:
:lifecycleNotifier()); |
1862 } | 1861 } |
1863 | 1862 |
1864 PassOwnPtr<LifecycleNotifier<DOMWindow> > DOMWindow::createLifecycleNotifier() | 1863 PassOwnPtr<LifecycleNotifier<DOMWindow> > DOMWindow::createLifecycleNotifier() |
1865 { | 1864 { |
1866 return DOMWindowLifecycleNotifier::create(this); | 1865 return DOMWindowLifecycleNotifier::create(this); |
1867 } | 1866 } |
1868 | 1867 |
1869 | 1868 |
1870 } // namespace WebCore | 1869 } // namespace WebCore |
OLD | NEW |