| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights |
| 3 * reserved. | 3 * reserved. |
| 4 * | 4 * |
| 5 * Portions are Copyright (C) 1998 Netscape Communications Corporation. | 5 * Portions are Copyright (C) 1998 Netscape Communications Corporation. |
| 6 * | 6 * |
| 7 * Other contributors: | 7 * Other contributors: |
| 8 * Robert O'Callahan <roc+@cs.cmu.edu> | 8 * Robert O'Callahan <roc+@cs.cmu.edu> |
| 9 * David Baron <dbaron@fas.harvard.edu> | 9 * David Baron <dbaron@fas.harvard.edu> |
| 10 * Christian Biesinger <cbiesinger@gmail.com> | 10 * Christian Biesinger <cbiesinger@gmail.com> |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 | 44 |
| 45 #include "core/paint/PaintLayerScrollableArea.h" | 45 #include "core/paint/PaintLayerScrollableArea.h" |
| 46 | 46 |
| 47 #include "core/css/PseudoStyleRequest.h" | 47 #include "core/css/PseudoStyleRequest.h" |
| 48 #include "core/dom/AXObjectCache.h" | 48 #include "core/dom/AXObjectCache.h" |
| 49 #include "core/dom/DOMNodeIds.h" | 49 #include "core/dom/DOMNodeIds.h" |
| 50 #include "core/dom/Node.h" | 50 #include "core/dom/Node.h" |
| 51 #include "core/dom/TaskRunnerHelper.h" | 51 #include "core/dom/TaskRunnerHelper.h" |
| 52 #include "core/dom/shadow/ShadowRoot.h" | 52 #include "core/dom/shadow/ShadowRoot.h" |
| 53 #include "core/editing/FrameSelection.h" | 53 #include "core/editing/FrameSelection.h" |
| 54 #include "core/frame/FrameHost.h" | |
| 55 #include "core/frame/FrameView.h" | 54 #include "core/frame/FrameView.h" |
| 56 #include "core/frame/LocalFrame.h" | 55 #include "core/frame/LocalFrame.h" |
| 57 #include "core/frame/LocalFrameClient.h" | 56 #include "core/frame/LocalFrameClient.h" |
| 58 #include "core/frame/PageScaleConstraintsSet.h" | 57 #include "core/frame/PageScaleConstraintsSet.h" |
| 59 #include "core/frame/RootFrameViewport.h" | 58 #include "core/frame/RootFrameViewport.h" |
| 60 #include "core/frame/Settings.h" | 59 #include "core/frame/Settings.h" |
| 61 #include "core/frame/VisualViewport.h" | 60 #include "core/frame/VisualViewport.h" |
| 62 #include "core/html/HTMLFrameOwnerElement.h" | 61 #include "core/html/HTMLFrameOwnerElement.h" |
| 63 #include "core/input/EventHandler.h" | 62 #include "core/input/EventHandler.h" |
| 64 #include "core/layout/LayoutFlexibleBox.h" | 63 #include "core/layout/LayoutFlexibleBox.h" |
| (...skipping 2086 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2151 | 2150 |
| 2152 void PaintLayerScrollableArea::DelayScrollOffsetClampScope:: | 2151 void PaintLayerScrollableArea::DelayScrollOffsetClampScope:: |
| 2153 clampScrollableAreas() { | 2152 clampScrollableAreas() { |
| 2154 for (auto& scrollableArea : *s_needsClamp) | 2153 for (auto& scrollableArea : *s_needsClamp) |
| 2155 scrollableArea->clampScrollOffsetAfterOverflowChange(); | 2154 scrollableArea->clampScrollOffsetAfterOverflowChange(); |
| 2156 delete s_needsClamp; | 2155 delete s_needsClamp; |
| 2157 s_needsClamp = nullptr; | 2156 s_needsClamp = nullptr; |
| 2158 } | 2157 } |
| 2159 | 2158 |
| 2160 } // namespace blink | 2159 } // namespace blink |
| OLD | NEW |