| 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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 #include "core/page/ChromeClient.h" | 73 #include "core/page/ChromeClient.h" |
| 74 #include "core/page/EventHandler.h" | 74 #include "core/page/EventHandler.h" |
| 75 #include "core/page/Page.h" | 75 #include "core/page/Page.h" |
| 76 #include "core/page/WindowFocusAllowedIndicator.h" | 76 #include "core/page/WindowFocusAllowedIndicator.h" |
| 77 #include "core/rendering/style/RenderStyle.h" | 77 #include "core/rendering/style/RenderStyle.h" |
| 78 #include "platform/EventDispatchForbiddenScope.h" | 78 #include "platform/EventDispatchForbiddenScope.h" |
| 79 #include "platform/PlatformScreen.h" | 79 #include "platform/PlatformScreen.h" |
| 80 #include "platform/RuntimeEnabledFeatures.h" | 80 #include "platform/RuntimeEnabledFeatures.h" |
| 81 #include "platform/UserGestureIndicator.h" | 81 #include "platform/UserGestureIndicator.h" |
| 82 #include "platform/geometry/FloatRect.h" | 82 #include "platform/geometry/FloatRect.h" |
| 83 #include "platform/graphics/media/MediaPlayer.h" | |
| 84 #include "platform/weborigin/KURL.h" | 83 #include "platform/weborigin/KURL.h" |
| 85 #include "platform/weborigin/SecurityPolicy.h" | 84 #include "platform/weborigin/SecurityPolicy.h" |
| 86 #include "public/platform/Platform.h" | 85 #include "public/platform/Platform.h" |
| 87 #include "wtf/MainThread.h" | 86 #include "wtf/MainThread.h" |
| 88 #include "wtf/MathExtras.h" | 87 #include "wtf/MathExtras.h" |
| 89 #include "wtf/text/WTFString.h" | 88 #include "wtf/text/WTFString.h" |
| 90 #include <algorithm> | 89 #include <algorithm> |
| 91 | 90 |
| 92 using std::min; | 91 using std::min; |
| 93 using std::max; | 92 using std::max; |
| (...skipping 716 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 810 { | 809 { |
| 811 return static_cast<DOMWindowLifecycleNotifier&>(LifecycleContext<LocalDOMWin
dow>::lifecycleNotifier()); | 810 return static_cast<DOMWindowLifecycleNotifier&>(LifecycleContext<LocalDOMWin
dow>::lifecycleNotifier()); |
| 812 } | 811 } |
| 813 | 812 |
| 814 PassOwnPtr<LifecycleNotifier<LocalDOMWindow> > LocalDOMWindow::createLifecycleNo
tifier() | 813 PassOwnPtr<LifecycleNotifier<LocalDOMWindow> > LocalDOMWindow::createLifecycleNo
tifier() |
| 815 { | 814 { |
| 816 return DOMWindowLifecycleNotifier::create(this); | 815 return DOMWindowLifecycleNotifier::create(this); |
| 817 } | 816 } |
| 818 | 817 |
| 819 } // namespace blink | 818 } // namespace blink |
| OLD | NEW |