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

Unified Diff: Source/platform/scroll/ScrollView.cpp

Issue 306413002: Rename Repaint to Paint Invalidation Part 2 (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase to master Created 6 years, 7 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
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;

Powered by Google App Engine
This is Rietveld 408576698