Index: Source/platform/scroll/ScrollView.cpp |
diff --git a/Source/platform/scroll/ScrollView.cpp b/Source/platform/scroll/ScrollView.cpp |
index 12c7d974106dbb2fff98c5776cc851f42525dcfc..3c8e41dee763a3814e3fe9aa7a0b80e67dd3ad66 100644 |
--- a/Source/platform/scroll/ScrollView.cpp |
+++ b/Source/platform/scroll/ScrollView.cpp |
@@ -766,10 +766,10 @@ bool ScrollView::shouldPlaceVerticalScrollbarOnLeft() const |
return false; |
} |
-void ScrollView::repaintContentRectangle(const IntRect& rect) |
+void ScrollView::invalidatedContentRectangleForPaint(const IntRect& rect) |
Julien - ping for review
2014/06/03 01:00:20
contentRectangleForPaintInvalidation?
dsinclair
2014/06/03 14:06:18
Done.
|
{ |
IntRect paintRect = rect; |
- if (clipsRepaints() && !paintsEntireContents()) |
+ if (clipsPaintInvalidations() && !paintsEntireContents()) |
paintRect.intersect(visibleContentRect()); |
if (paintRect.isEmpty()) |
return; |