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

Unified Diff: Source/core/rendering/RenderBox.cpp

Issue 641733004: Merge FrameView and ScrollView. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebaseline. Created 6 years, 2 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/page/EventHandler.cpp ('k') | Source/core/rendering/RenderLayerScrollableArea.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/RenderBox.cpp
diff --git a/Source/core/rendering/RenderBox.cpp b/Source/core/rendering/RenderBox.cpp
index 0ea634be3aaab7e1e226da1d2968a3187507b44d..7b8b1fd5b75a09ee93b2225f5892f1fb83a39832 100644
--- a/Source/core/rendering/RenderBox.cpp
+++ b/Source/core/rendering/RenderBox.cpp
@@ -801,9 +801,9 @@ void RenderBox::panScroll(const IntPoint& sourcePoint)
IntSize delta = lastKnownMousePosition - sourcePoint;
- if (abs(delta.width()) <= ScrollView::noPanScrollRadius) // at the center we let the space for the icon
+ if (abs(delta.width()) <= FrameView::noPanScrollRadius) // at the center we let the space for the icon
delta.setWidth(0);
- if (abs(delta.height()) <= ScrollView::noPanScrollRadius)
+ if (abs(delta.height()) <= FrameView::noPanScrollRadius)
delta.setHeight(0);
scrollByRecursively(adjustedScrollDelta(delta), ScrollOffsetClamped);
}
« no previous file with comments | « Source/core/page/EventHandler.cpp ('k') | Source/core/rendering/RenderLayerScrollableArea.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698