| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv
ed. | 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv
ed. |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 #include "core/dom/Element.h" | 24 #include "core/dom/Element.h" |
| 25 #include "core/editing/FrameSelection.h" | 25 #include "core/editing/FrameSelection.h" |
| 26 #include "core/frame/FrameView.h" | 26 #include "core/frame/FrameView.h" |
| 27 #include "core/frame/LocalFrame.h" | 27 #include "core/frame/LocalFrame.h" |
| 28 #include "core/frame/Settings.h" | 28 #include "core/frame/Settings.h" |
| 29 #include "core/html/HTMLFrameOwnerElement.h" | 29 #include "core/html/HTMLFrameOwnerElement.h" |
| 30 #include "core/html/HTMLIFrameElement.h" | 30 #include "core/html/HTMLIFrameElement.h" |
| 31 #include "core/html/HTMLVideoElement.h" | 31 #include "core/html/HTMLVideoElement.h" |
| 32 #include "core/inspector/InspectorTraceEvents.h" | 32 #include "core/inspector/InspectorTraceEvents.h" |
| 33 #include "core/layout/HitTestResult.h" | 33 #include "core/layout/HitTestResult.h" |
| 34 #include "core/layout/LayoutFlowThread.h" | |
| 35 #include "core/layout/LayoutGeometryMap.h" | 34 #include "core/layout/LayoutGeometryMap.h" |
| 36 #include "core/layout/LayoutMedia.h" | 35 #include "core/layout/LayoutMedia.h" |
| 37 #include "core/layout/LayoutPart.h" | 36 #include "core/layout/LayoutPart.h" |
| 38 #include "core/layout/LayoutQuote.h" | 37 #include "core/layout/LayoutQuote.h" |
| 39 #include "core/layout/LayoutScrollbarPart.h" | 38 #include "core/layout/LayoutScrollbarPart.h" |
| 40 #include "core/layout/ViewFragmentationContext.h" | 39 #include "core/layout/ViewFragmentationContext.h" |
| 41 #include "core/layout/compositing/PaintLayerCompositor.h" | 40 #include "core/layout/compositing/PaintLayerCompositor.h" |
| 42 #include "core/page/Page.h" | 41 #include "core/page/Page.h" |
| 43 #include "core/paint/PaintLayer.h" | 42 #include "core/paint/PaintLayer.h" |
| 44 #include "core/paint/ViewPainter.h" | 43 #include "core/paint/ViewPainter.h" |
| (...skipping 998 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1043 // ASSERT(!frame()->isMainFrame()) here. All main frame scrolling should | 1042 // ASSERT(!frame()->isMainFrame()) here. All main frame scrolling should |
| 1044 // be handled by the ViewportScrollCallback. | 1043 // be handled by the ViewportScrollCallback. |
| 1045 | 1044 |
| 1046 if (!frameView()) | 1045 if (!frameView()) |
| 1047 return ScrollResult(false, false, delta.width(), delta.height()); | 1046 return ScrollResult(false, false, delta.width(), delta.height()); |
| 1048 | 1047 |
| 1049 return frameView()->getScrollableArea()->userScroll(granularity, delta); | 1048 return frameView()->getScrollableArea()->userScroll(granularity, delta); |
| 1050 } | 1049 } |
| 1051 | 1050 |
| 1052 } // namespace blink | 1051 } // namespace blink |
| OLD | NEW |