| Index: Source/WebCore/platform/ScrollView.cpp
 | 
| ===================================================================
 | 
| --- Source/WebCore/platform/ScrollView.cpp	(revision 145387)
 | 
| +++ Source/WebCore/platform/ScrollView.cpp	(working copy)
 | 
| @@ -890,6 +890,13 @@
 | 
|          (*current)->frameRectsChanged();
 | 
|  }
 | 
|  
 | 
| +void ScrollView::clipRectChanged()
 | 
| +{
 | 
| +    HashSet<RefPtr<Widget> >::const_iterator end = m_children.end();
 | 
| +    for (HashSet<RefPtr<Widget> >::const_iterator current = m_children.begin(); current != end; ++current)
 | 
| +        (*current)->clipRectChanged();
 | 
| +}
 | 
| +
 | 
|  #if USE(ACCELERATED_COMPOSITING)
 | 
|  static void positionScrollbarLayer(GraphicsLayer* graphicsLayer, Scrollbar* scrollbar)
 | 
|  {
 | 
| 
 |