| 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 #include "sky/engine/core/inspector/InspectorTraceEvents.h" | 70 #include "sky/engine/core/inspector/InspectorTraceEvents.h" |
| 71 #include "sky/engine/core/loader/FrameLoaderClient.h" | 71 #include "sky/engine/core/loader/FrameLoaderClient.h" |
| 72 #include "sky/engine/core/page/Chrome.h" | 72 #include "sky/engine/core/page/Chrome.h" |
| 73 #include "sky/engine/core/page/ChromeClient.h" | 73 #include "sky/engine/core/page/ChromeClient.h" |
| 74 #include "sky/engine/core/page/EventHandler.h" | 74 #include "sky/engine/core/page/EventHandler.h" |
| 75 #include "sky/engine/core/page/Page.h" | 75 #include "sky/engine/core/page/Page.h" |
| 76 #include "sky/engine/core/page/WindowFocusAllowedIndicator.h" | 76 #include "sky/engine/core/page/WindowFocusAllowedIndicator.h" |
| 77 #include "sky/engine/core/rendering/style/RenderStyle.h" | 77 #include "sky/engine/core/rendering/style/RenderStyle.h" |
| 78 #include "sky/engine/platform/EventDispatchForbiddenScope.h" | 78 #include "sky/engine/platform/EventDispatchForbiddenScope.h" |
| 79 #include "sky/engine/platform/PlatformScreen.h" | 79 #include "sky/engine/platform/PlatformScreen.h" |
| 80 #include "sky/engine/platform/UserGestureIndicator.h" | |
| 81 #include "sky/engine/platform/geometry/FloatRect.h" | 80 #include "sky/engine/platform/geometry/FloatRect.h" |
| 82 #include "sky/engine/platform/weborigin/KURL.h" | 81 #include "sky/engine/platform/weborigin/KURL.h" |
| 83 #include "sky/engine/platform/weborigin/SecurityPolicy.h" | 82 #include "sky/engine/platform/weborigin/SecurityPolicy.h" |
| 84 #include "sky/engine/public/platform/Platform.h" | 83 #include "sky/engine/public/platform/Platform.h" |
| 85 #include "sky/engine/core/inspector/ScriptCallStack.h" | 84 #include "sky/engine/core/inspector/ScriptCallStack.h" |
| 86 #include "sky/engine/wtf/MainThread.h" | 85 #include "sky/engine/wtf/MainThread.h" |
| 87 #include "sky/engine/wtf/MathExtras.h" | 86 #include "sky/engine/wtf/MathExtras.h" |
| 88 #include "sky/engine/wtf/text/WTFString.h" | 87 #include "sky/engine/wtf/text/WTFString.h" |
| 89 | 88 |
| 90 using std::min; | 89 using std::min; |
| (...skipping 690 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 781 { | 780 { |
| 782 return static_cast<DOMWindowLifecycleNotifier&>(LifecycleContext<LocalDOMWin
dow>::lifecycleNotifier()); | 781 return static_cast<DOMWindowLifecycleNotifier&>(LifecycleContext<LocalDOMWin
dow>::lifecycleNotifier()); |
| 783 } | 782 } |
| 784 | 783 |
| 785 PassOwnPtr<LifecycleNotifier<LocalDOMWindow> > LocalDOMWindow::createLifecycleNo
tifier() | 784 PassOwnPtr<LifecycleNotifier<LocalDOMWindow> > LocalDOMWindow::createLifecycleNo
tifier() |
| 786 { | 785 { |
| 787 return DOMWindowLifecycleNotifier::create(this); | 786 return DOMWindowLifecycleNotifier::create(this); |
| 788 } | 787 } |
| 789 | 788 |
| 790 } // namespace blink | 789 } // namespace blink |
| OLD | NEW |