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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 #include "core/page/PageConsole.h" | 82 #include "core/page/PageConsole.h" |
83 #include "core/page/PageGroup.h" | 83 #include "core/page/PageGroup.h" |
84 #include "core/page/Performance.h" | 84 #include "core/page/Performance.h" |
85 #include "core/page/Screen.h" | 85 #include "core/page/Screen.h" |
86 #include "core/page/Settings.h" | 86 #include "core/page/Settings.h" |
87 #include "core/page/WindowFeatures.h" | 87 #include "core/page/WindowFeatures.h" |
88 #include "core/page/WindowFocusAllowedIndicator.h" | 88 #include "core/page/WindowFocusAllowedIndicator.h" |
89 #include "core/page/scrolling/ScrollingCoordinator.h" | 89 #include "core/page/scrolling/ScrollingCoordinator.h" |
90 #include "core/platform/PlatformScreen.h" | 90 #include "core/platform/PlatformScreen.h" |
91 #include "core/platform/SuddenTermination.h" | 91 #include "core/platform/SuddenTermination.h" |
92 #include "core/platform/graphics/FloatRect.h" | |
93 #include "core/platform/graphics/MediaPlayer.h" | 92 #include "core/platform/graphics/MediaPlayer.h" |
94 #include "core/storage/Storage.h" | 93 #include "core/storage/Storage.h" |
95 #include "core/storage/StorageArea.h" | 94 #include "core/storage/StorageArea.h" |
96 #include "core/storage/StorageNamespace.h" | 95 #include "core/storage/StorageNamespace.h" |
97 #include "modules/device_orientation/NewDeviceOrientationController.h" | 96 #include "modules/device_orientation/NewDeviceOrientationController.h" |
| 97 #include "platform/geometry/FloatRect.h" |
98 #include "weborigin/KURL.h" | 98 #include "weborigin/KURL.h" |
99 #include "weborigin/SecurityOrigin.h" | 99 #include "weborigin/SecurityOrigin.h" |
100 #include "weborigin/SecurityPolicy.h" | 100 #include "weborigin/SecurityPolicy.h" |
101 | 101 |
102 using std::min; | 102 using std::min; |
103 using std::max; | 103 using std::max; |
104 | 104 |
105 namespace WebCore { | 105 namespace WebCore { |
106 | 106 |
107 class PostMessageTimer : public TimerBase { | 107 class PostMessageTimer : public TimerBase { |
(...skipping 1653 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1761 return static_cast<DOMWindowLifecycleNotifier*>(LifecycleContext::lifecycleN
otifier()); | 1761 return static_cast<DOMWindowLifecycleNotifier*>(LifecycleContext::lifecycleN
otifier()); |
1762 } | 1762 } |
1763 | 1763 |
1764 PassOwnPtr<LifecycleNotifier> DOMWindow::createLifecycleNotifier() | 1764 PassOwnPtr<LifecycleNotifier> DOMWindow::createLifecycleNotifier() |
1765 { | 1765 { |
1766 return DOMWindowLifecycleNotifier::create(this); | 1766 return DOMWindowLifecycleNotifier::create(this); |
1767 } | 1767 } |
1768 | 1768 |
1769 | 1769 |
1770 } // namespace WebCore | 1770 } // namespace WebCore |
OLD | NEW |