OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "core/page/scrolling/RootScrollerController.h" | 5 #include "core/page/scrolling/RootScrollerController.h" |
6 | 6 |
7 #include "core/dom/Document.h" | 7 #include "core/dom/Document.h" |
8 #include "core/dom/Element.h" | 8 #include "core/dom/Element.h" |
9 #include "core/frame/FrameHost.h" | 9 #include "core/frame/FrameHost.h" |
10 #include "core/frame/FrameView.h" | 10 #include "core/frame/FrameView.h" |
11 #include "core/layout/LayoutBox.h" | 11 #include "core/layout/LayoutBox.h" |
| 12 #include "core/layout/api/LayoutViewItem.h" |
12 #include "core/paint/PaintLayerScrollableArea.h" | 13 #include "core/paint/PaintLayerScrollableArea.h" |
13 #include "platform/graphics/GraphicsLayer.h" | 14 #include "platform/graphics/GraphicsLayer.h" |
14 #include "platform/scroll/ScrollableArea.h" | 15 #include "platform/scroll/ScrollableArea.h" |
15 | 16 |
16 namespace blink { | 17 namespace blink { |
17 | 18 |
18 class RootFrameViewport; | 19 class RootFrameViewport; |
19 | 20 |
20 namespace { | 21 namespace { |
21 | 22 |
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
171 return topDocumentController->isViewportScrollCallback(callback); | 172 return topDocumentController->isViewportScrollCallback(callback); |
172 } | 173 } |
173 | 174 |
174 Element* RootScrollerController::defaultEffectiveRootScroller() | 175 Element* RootScrollerController::defaultEffectiveRootScroller() |
175 { | 176 { |
176 DCHECK(m_document); | 177 DCHECK(m_document); |
177 return m_document->documentElement(); | 178 return m_document->documentElement(); |
178 } | 179 } |
179 | 180 |
180 } // namespace blink | 181 } // namespace blink |
OLD | NEW |