| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserv
ed. | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserv
ed. |
| 3 * Copyright (C) 2006 Alexey Proskuryakov (ap@webkit.org) | 3 * Copyright (C) 2006 Alexey Proskuryakov (ap@webkit.org) |
| 4 * Copyright (C) 2012 Digia Plc. and/or its subsidiary(-ies) | 4 * Copyright (C) 2012 Digia Plc. and/or its subsidiary(-ies) |
| 5 * | 5 * |
| 6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
| 7 * modification, are permitted provided that the following conditions | 7 * modification, are permitted provided that the following conditions |
| 8 * are met: | 8 * are met: |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 #include "core/page/FocusController.h" | 81 #include "core/page/FocusController.h" |
| 82 #include "core/page/FrameTree.h" | 82 #include "core/page/FrameTree.h" |
| 83 #include "core/page/Page.h" | 83 #include "core/page/Page.h" |
| 84 #include "core/page/SpatialNavigation.h" | 84 #include "core/page/SpatialNavigation.h" |
| 85 #include "core/page/TouchAdjustment.h" | 85 #include "core/page/TouchAdjustment.h" |
| 86 #include "core/page/scrolling/OverscrollController.h" | 86 #include "core/page/scrolling/OverscrollController.h" |
| 87 #include "core/page/scrolling/RootScroller.h" | 87 #include "core/page/scrolling/RootScroller.h" |
| 88 #include "core/page/scrolling/ScrollState.h" | 88 #include "core/page/scrolling/ScrollState.h" |
| 89 #include "core/paint/PaintLayer.h" | 89 #include "core/paint/PaintLayer.h" |
| 90 #include "core/style/ComputedStyle.h" | 90 #include "core/style/ComputedStyle.h" |
| 91 #include "core/style/CursorData.h" |
| 91 #include "core/svg/SVGDocumentExtensions.h" | 92 #include "core/svg/SVGDocumentExtensions.h" |
| 92 #include "platform/PlatformGestureEvent.h" | 93 #include "platform/PlatformGestureEvent.h" |
| 93 #include "platform/PlatformKeyboardEvent.h" | 94 #include "platform/PlatformKeyboardEvent.h" |
| 94 #include "platform/PlatformTouchEvent.h" | 95 #include "platform/PlatformTouchEvent.h" |
| 95 #include "platform/PlatformWheelEvent.h" | 96 #include "platform/PlatformWheelEvent.h" |
| 96 #include "platform/RuntimeEnabledFeatures.h" | 97 #include "platform/RuntimeEnabledFeatures.h" |
| 97 #include "platform/TraceEvent.h" | 98 #include "platform/TraceEvent.h" |
| 98 #include "platform/WindowsKeyboardCodes.h" | 99 #include "platform/WindowsKeyboardCodes.h" |
| 99 #include "platform/geometry/FloatPoint.h" | 100 #include "platform/geometry/FloatPoint.h" |
| 100 #include "platform/graphics/Image.h" | 101 #include "platform/graphics/Image.h" |
| (...skipping 3606 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3707 | 3708 |
| 3708 FrameHost* EventHandler::frameHost() const | 3709 FrameHost* EventHandler::frameHost() const |
| 3709 { | 3710 { |
| 3710 if (!m_frame->page()) | 3711 if (!m_frame->page()) |
| 3711 return nullptr; | 3712 return nullptr; |
| 3712 | 3713 |
| 3713 return &m_frame->page()->frameHost(); | 3714 return &m_frame->page()->frameHost(); |
| 3714 } | 3715 } |
| 3715 | 3716 |
| 3716 } // namespace blink | 3717 } // namespace blink |
| OLD | NEW |