| 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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 #include "core/page/TouchAdjustment.h" | 82 #include "core/page/TouchAdjustment.h" |
| 83 #include "core/page/scrolling/ScrollState.h" | 83 #include "core/page/scrolling/ScrollState.h" |
| 84 #include "core/paint/PaintLayer.h" | 84 #include "core/paint/PaintLayer.h" |
| 85 #include "core/style/ComputedStyle.h" | 85 #include "core/style/ComputedStyle.h" |
| 86 #include "core/style/CursorData.h" | 86 #include "core/style/CursorData.h" |
| 87 #include "core/svg/SVGDocumentExtensions.h" | 87 #include "core/svg/SVGDocumentExtensions.h" |
| 88 #include "platform/PlatformGestureEvent.h" | 88 #include "platform/PlatformGestureEvent.h" |
| 89 #include "platform/PlatformTouchEvent.h" | 89 #include "platform/PlatformTouchEvent.h" |
| 90 #include "platform/PlatformWheelEvent.h" | 90 #include "platform/PlatformWheelEvent.h" |
| 91 #include "platform/RuntimeEnabledFeatures.h" | 91 #include "platform/RuntimeEnabledFeatures.h" |
| 92 #include "platform/TraceEvent.h" | |
| 93 #include "platform/WindowsKeyboardCodes.h" | 92 #include "platform/WindowsKeyboardCodes.h" |
| 94 #include "platform/geometry/FloatPoint.h" | 93 #include "platform/geometry/FloatPoint.h" |
| 95 #include "platform/graphics/Image.h" | 94 #include "platform/graphics/Image.h" |
| 96 #include "platform/heap/Handle.h" | 95 #include "platform/heap/Handle.h" |
| 97 #include "platform/scroll/ScrollAnimatorBase.h" | 96 #include "platform/scroll/ScrollAnimatorBase.h" |
| 98 #include "platform/scroll/Scrollbar.h" | 97 #include "platform/scroll/Scrollbar.h" |
| 98 #include "platform/tracing/TraceEvent.h" |
| 99 #include "public/platform/WebInputEvent.h" | 99 #include "public/platform/WebInputEvent.h" |
| 100 #include "wtf/Assertions.h" | 100 #include "wtf/Assertions.h" |
| 101 #include "wtf/CurrentTime.h" | 101 #include "wtf/CurrentTime.h" |
| 102 #include "wtf/PtrUtil.h" | 102 #include "wtf/PtrUtil.h" |
| 103 #include "wtf/StdLibExtras.h" | 103 #include "wtf/StdLibExtras.h" |
| 104 #include <memory> | 104 #include <memory> |
| 105 | 105 |
| 106 namespace blink { | 106 namespace blink { |
| 107 | 107 |
| 108 namespace { | 108 namespace { |
| (...skipping 1883 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1992 | 1992 |
| 1993 | 1993 |
| 1994 FrameHost* EventHandler::frameHost() const { | 1994 FrameHost* EventHandler::frameHost() const { |
| 1995 if (!m_frame->page()) | 1995 if (!m_frame->page()) |
| 1996 return nullptr; | 1996 return nullptr; |
| 1997 | 1997 |
| 1998 return &m_frame->page()->frameHost(); | 1998 return &m_frame->page()->frameHost(); |
| 1999 } | 1999 } |
| 2000 | 2000 |
| 2001 } // namespace blink | 2001 } // namespace blink |
| OLD | NEW |