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

Unified Diff: Source/core/rendering/RenderLayerRepainter.h

Issue 478733002: Rename repaint to paintInvalidation for remaining methods. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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
« no previous file with comments | « Source/core/rendering/RenderLayerFilterInfo.cpp ('k') | Source/core/rendering/RenderLayerRepainter.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/RenderLayerRepainter.h
diff --git a/Source/core/rendering/RenderLayerRepainter.h b/Source/core/rendering/RenderLayerRepainter.h
index 57bf7b742682da5c217628947f163b7829e7e642..c1768a43dc8839c299b7a2c37284e26ad03316fb 100644
--- a/Source/core/rendering/RenderLayerRepainter.h
+++ b/Source/core/rendering/RenderLayerRepainter.h
@@ -58,7 +58,7 @@ class RenderLayerRepainter {
public:
RenderLayerRepainter(RenderLayerModelObject&);
- LayoutRect repaintRectIncludingNonCompositingDescendants() const;
+ LayoutRect paintInvalidationRectIncludingNonCompositingDescendants() const;
void paintInvalidationIncludingNonCompositingDescendants();
@@ -66,14 +66,14 @@ public:
// Indicate that the layer contents need to be repainted. Only has an effect
// if layer compositing is being used,
- void setBackingNeedsRepaintInRect(const LayoutRect&); // r is in the coordinate space of the layer's render object
+ void setBackingNeedsPaintInvalidationInRect(const LayoutRect&); // r is in the coordinate space of the layer's render object
- void setFilterBackendNeedsRepaintingInRect(const LayoutRect&);
+ void setFilterBackendNeedsPaintInvalidationInRect(const LayoutRect&);
private:
- void repaintIncludingNonCompositingDescendantsInternal(const RenderLayerModelObject* repaintContainer);
+ void paintInvalidationIncludingNonCompositingDescendantsInternal(const RenderLayerModelObject* repaintContainer);
- RenderLayer* enclosingFilterRepaintLayer() const;
+ RenderLayer* enclosingFilterPaintInvalidationLayer() const;
RenderLayerModelObject& m_renderer;
};
« no previous file with comments | « Source/core/rendering/RenderLayerFilterInfo.cpp ('k') | Source/core/rendering/RenderLayerRepainter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698