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/frame/FrameHost.h" | 5 #include "core/frame/FrameHost.h" |
6 #include "core/frame/FrameView.h" | 6 #include "core/frame/FrameView.h" |
7 #include "core/frame/TopControls.h" | 7 #include "core/frame/TopControls.h" |
8 #include "core/html/HTMLFrameOwnerElement.h" | 8 #include "core/html/HTMLFrameOwnerElement.h" |
| 9 #include "core/layout/LayoutBox.h" |
9 #include "core/page/Page.h" | 10 #include "core/page/Page.h" |
10 #include "core/page/scrolling/RootScrollerController.h" | 11 #include "core/page/scrolling/RootScrollerController.h" |
11 #include "core/paint/PaintLayerScrollableArea.h" | 12 #include "core/paint/PaintLayerScrollableArea.h" |
12 #include "platform/testing/URLTestHelpers.h" | 13 #include "platform/testing/URLTestHelpers.h" |
13 #include "platform/testing/UnitTestHelpers.h" | 14 #include "platform/testing/UnitTestHelpers.h" |
14 #include "public/platform/Platform.h" | 15 #include "public/platform/Platform.h" |
15 #include "public/platform/WebURLLoaderMockFactory.h" | 16 #include "public/platform/WebURLLoaderMockFactory.h" |
16 #include "public/web/WebCache.h" | 17 #include "public/web/WebCache.h" |
17 #include "public/web/WebConsoleMessage.h" | 18 #include "public/web/WebConsoleMessage.h" |
18 #include "public/web/WebRemoteFrame.h" | 19 #include "public/web/WebRemoteFrame.h" |
(...skipping 733 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
752 // EXPECT_EQ(200, container->scrollTop()); | 753 // EXPECT_EQ(200, container->scrollTop()); |
753 } | 754 } |
754 | 755 |
755 // Reset explicitly to prevent lifetime issues with the RemoteFrameClient. | 756 // Reset explicitly to prevent lifetime issues with the RemoteFrameClient. |
756 m_helper.reset(); | 757 m_helper.reset(); |
757 } | 758 } |
758 | 759 |
759 } // namespace | 760 } // namespace |
760 | 761 |
761 } // namespace blink | 762 } // namespace blink |
OLD | NEW |