Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(343)

Side by Side Diff: third_party/WebKit/Source/core/frame/FrameView.cpp

Issue 1913843004: Implementing document.setRootScroller API for main thread scrolling. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@overscrollController
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1998, 1999 Torben Weis <weis@kde.org> 2 * Copyright (C) 1998, 1999 Torben Weis <weis@kde.org>
3 * 1999 Lars Knoll <knoll@kde.org> 3 * 1999 Lars Knoll <knoll@kde.org>
4 * 1999 Antti Koivisto <koivisto@kde.org> 4 * 1999 Antti Koivisto <koivisto@kde.org>
5 * 2000 Dirk Mueller <mueller@kde.org> 5 * 2000 Dirk Mueller <mueller@kde.org>
6 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved.
7 * (C) 2006 Graham Dennis (graham.dennis@gmail.com) 7 * (C) 2006 Graham Dennis (graham.dennis@gmail.com)
8 * (C) 2006 Alexey Proskuryakov (ap@nypop.com) 8 * (C) 2006 Alexey Proskuryakov (ap@nypop.com)
9 * Copyright (C) 2009 Google Inc. All rights reserved. 9 * Copyright (C) 2009 Google Inc. All rights reserved.
10 * 10 *
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 #include "core/layout/compositing/CompositedLayerMapping.h" 72 #include "core/layout/compositing/CompositedLayerMapping.h"
73 #include "core/layout/compositing/CompositedSelection.h" 73 #include "core/layout/compositing/CompositedSelection.h"
74 #include "core/layout/compositing/PaintLayerCompositor.h" 74 #include "core/layout/compositing/PaintLayerCompositor.h"
75 #include "core/layout/svg/LayoutSVGRoot.h" 75 #include "core/layout/svg/LayoutSVGRoot.h"
76 #include "core/loader/FrameLoader.h" 76 #include "core/loader/FrameLoader.h"
77 #include "core/loader/FrameLoaderClient.h" 77 #include "core/loader/FrameLoaderClient.h"
78 #include "core/page/AutoscrollController.h" 78 #include "core/page/AutoscrollController.h"
79 #include "core/page/ChromeClient.h" 79 #include "core/page/ChromeClient.h"
80 #include "core/page/FocusController.h" 80 #include "core/page/FocusController.h"
81 #include "core/page/FrameTree.h" 81 #include "core/page/FrameTree.h"
82 #include "core/page/Page.h" 82 #include "core/page/Page.h"
tdresser 2016/04/26 20:43:50 Is this used?
bokan 2016/04/26 23:06:23 Nope, it's a vestige of development. Removed.
83 #include "core/page/scrolling/RootScroller.h"
83 #include "core/page/scrolling/ScrollingCoordinator.h" 84 #include "core/page/scrolling/ScrollingCoordinator.h"
84 #include "core/paint/FramePainter.h" 85 #include "core/paint/FramePainter.h"
85 #include "core/paint/PaintLayer.h" 86 #include "core/paint/PaintLayer.h"
86 #include "core/paint/PaintPropertyTreeBuilder.h" 87 #include "core/paint/PaintPropertyTreeBuilder.h"
87 #include "core/plugins/PluginView.h" 88 #include "core/plugins/PluginView.h"
88 #include "core/style/ComputedStyle.h" 89 #include "core/style/ComputedStyle.h"
89 #include "core/svg/SVGDocumentExtensions.h" 90 #include "core/svg/SVGDocumentExtensions.h"
90 #include "core/svg/SVGSVGElement.h" 91 #include "core/svg/SVGSVGElement.h"
91 #include "platform/Histogram.h" 92 #include "platform/Histogram.h"
92 #include "platform/HostWindow.h" 93 #include "platform/HostWindow.h"
(...skipping 3973 matching lines...) Expand 10 before | Expand all | Expand 10 after
4066 return m_hiddenForThrottling && m_crossOriginForThrottling; 4067 return m_hiddenForThrottling && m_crossOriginForThrottling;
4067 } 4068 }
4068 4069
4069 LayoutBox& FrameView::boxForScrollControlPaintInvalidation() const 4070 LayoutBox& FrameView::boxForScrollControlPaintInvalidation() const
4070 { 4071 {
4071 ASSERT(layoutView()); 4072 ASSERT(layoutView());
4072 return *layoutView(); 4073 return *layoutView();
4073 } 4074 }
4074 4075
4075 } // namespace blink 4076 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698