| Index: Source/core/rendering/RenderBox.cpp
 | 
| diff --git a/Source/core/rendering/RenderBox.cpp b/Source/core/rendering/RenderBox.cpp
 | 
| index c4e1eb3e853337015960aec04165fd02678cffd6..debf29da269ae825ebe94e30b6739f48a1d1185c 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);
 | 
| 
 |