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

Unified Diff: third_party/WebKit/Source/core/paint/PaintInvalidator.h

Issue 2465983002: Rename "paint invalidation rect" etc. to "visual rect". (Closed)
Patch Set: - Created 4 years, 1 month 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: third_party/WebKit/Source/core/paint/PaintInvalidator.h
diff --git a/third_party/WebKit/Source/core/paint/PaintInvalidator.h b/third_party/WebKit/Source/core/paint/PaintInvalidator.h
index 68c7e5aa0312ec396be16cb188cd2ba363912e4a..c03834d7c33d0b25ac06dd2c41d37302effbed56 100644
--- a/third_party/WebKit/Source/core/paint/PaintInvalidator.h
+++ b/third_party/WebKit/Source/core/paint/PaintInvalidator.h
@@ -68,8 +68,8 @@ struct PaintInvalidatorContext {
PaintLayer* paintingLayer = nullptr;
- LayoutRect oldBounds;
- LayoutRect newBounds;
+ LayoutRect oldVisualRect;
+ LayoutRect newVisualRect;
LayoutPoint oldLocation;
LayoutPoint newLocation;
};
@@ -88,9 +88,8 @@ class PaintInvalidator {
const LayoutObject&,
const FloatRect&,
const PaintInvalidatorContext&);
- LayoutRect computePaintInvalidationRectInBacking(
- const LayoutObject&,
- const PaintInvalidatorContext&);
+ LayoutRect computeVisualRectInBacking(const LayoutObject&,
+ const PaintInvalidatorContext&);
LayoutPoint computeLocationFromPaintInvalidationBacking(
const LayoutObject&,
const PaintInvalidatorContext&);

Powered by Google App Engine
This is Rietveld 408576698