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

Unified Diff: Source/core/page/AutoscrollController.cpp

Issue 931423003: Rename rendering/RenderList* to layout/LayoutList* (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove spurious LayoutLayerModelObject reference Created 5 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/layout/line/InlineFlowBox.cpp ('k') | Source/core/paint/ListItemPainter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/page/AutoscrollController.cpp
diff --git a/Source/core/page/AutoscrollController.cpp b/Source/core/page/AutoscrollController.cpp
index 4c8a4453bdc863d5cfcfa1d14ce9a8cf7067a5d3..93f9fd294beca4a13acc3324498a0378960be7ea 100644
--- a/Source/core/page/AutoscrollController.cpp
+++ b/Source/core/page/AutoscrollController.cpp
@@ -32,11 +32,11 @@
#include "core/frame/FrameView.h"
#include "core/frame/LocalFrame.h"
#include "core/layout/HitTestResult.h"
+#include "core/layout/LayoutListBox.h"
#include "core/page/Chrome.h"
#include "core/page/EventHandler.h"
#include "core/page/Page.h"
#include "core/rendering/RenderBox.h"
-#include "core/rendering/RenderListBox.h"
#include "wtf/CurrentTime.h"
namespace blink {
@@ -74,7 +74,7 @@ void AutoscrollController::startAutoscrollForSelection(LayoutObject* renderer)
return;
RenderBox* scrollable = RenderBox::findAutoscrollable(renderer);
if (!scrollable)
- scrollable = renderer->isListBox() ? toRenderListBox(renderer) : nullptr;
+ scrollable = renderer->isListBox() ? toLayoutListBox(renderer) : nullptr;
if (!scrollable)
return;
m_autoscrollType = AutoscrollForSelection;
« no previous file with comments | « Source/core/layout/line/InlineFlowBox.cpp ('k') | Source/core/paint/ListItemPainter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698