| 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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 #include "core/page/EventHandler.h" | 75 #include "core/page/EventHandler.h" |
| 76 #include "core/page/FrameTree.h" | 76 #include "core/page/FrameTree.h" |
| 77 #include "core/frame/FrameView.h" | 77 #include "core/frame/FrameView.h" |
| 78 #include "core/page/Page.h" | 78 #include "core/page/Page.h" |
| 79 #include "core/page/PageConsole.h" | 79 #include "core/page/PageConsole.h" |
| 80 #include "core/page/PageGroup.h" | 80 #include "core/page/PageGroup.h" |
| 81 #include "core/page/Settings.h" | 81 #include "core/page/Settings.h" |
| 82 #include "core/page/WindowFeatures.h" | 82 #include "core/page/WindowFeatures.h" |
| 83 #include "core/page/WindowFocusAllowedIndicator.h" | 83 #include "core/page/WindowFocusAllowedIndicator.h" |
| 84 #include "core/page/scrolling/ScrollingCoordinator.h" | 84 #include "core/page/scrolling/ScrollingCoordinator.h" |
| 85 #include "core/platform/PlatformScreen.h" | |
| 86 #include "core/platform/graphics/MediaPlayer.h" | 85 #include "core/platform/graphics/MediaPlayer.h" |
| 87 #include "core/storage/Storage.h" | 86 #include "core/storage/Storage.h" |
| 88 #include "core/storage/StorageArea.h" | 87 #include "core/storage/StorageArea.h" |
| 89 #include "core/storage/StorageNamespace.h" | 88 #include "core/storage/StorageNamespace.h" |
| 90 #include "core/timing/Performance.h" | 89 #include "core/timing/Performance.h" |
| 91 #include "modules/device_orientation/NewDeviceOrientationController.h" | 90 #include "modules/device_orientation/NewDeviceOrientationController.h" |
| 91 #include "platform/PlatformScreen.h" |
| 92 #include "platform/UserGestureIndicator.h" | 92 #include "platform/UserGestureIndicator.h" |
| 93 #include "platform/geometry/FloatRect.h" | 93 #include "platform/geometry/FloatRect.h" |
| 94 #include "public/platform/Platform.h" | 94 #include "public/platform/Platform.h" |
| 95 #include "weborigin/KURL.h" | 95 #include "weborigin/KURL.h" |
| 96 #include "weborigin/SecurityOrigin.h" | 96 #include "weborigin/SecurityOrigin.h" |
| 97 #include "weborigin/SecurityPolicy.h" | 97 #include "weborigin/SecurityPolicy.h" |
| 98 #include "wtf/MainThread.h" | 98 #include "wtf/MainThread.h" |
| 99 #include "wtf/MathExtras.h" | 99 #include "wtf/MathExtras.h" |
| 100 #include "wtf/text/WTFString.h" | 100 #include "wtf/text/WTFString.h" |
| 101 | 101 |
| (...skipping 1664 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1766 return static_cast<DOMWindowLifecycleNotifier*>(LifecycleContext::lifecycleN
otifier()); | 1766 return static_cast<DOMWindowLifecycleNotifier*>(LifecycleContext::lifecycleN
otifier()); |
| 1767 } | 1767 } |
| 1768 | 1768 |
| 1769 PassOwnPtr<LifecycleNotifier> DOMWindow::createLifecycleNotifier() | 1769 PassOwnPtr<LifecycleNotifier> DOMWindow::createLifecycleNotifier() |
| 1770 { | 1770 { |
| 1771 return DOMWindowLifecycleNotifier::create(this); | 1771 return DOMWindowLifecycleNotifier::create(this); |
| 1772 } | 1772 } |
| 1773 | 1773 |
| 1774 | 1774 |
| 1775 } // namespace WebCore | 1775 } // namespace WebCore |
| OLD | NEW |