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

Unified Diff: Source/platform/graphics/GraphicsLayerClient.h

Issue 468343002: Rename repaint to paintInvalidation in core/rendering/compositing. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix invalidator spelling 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/platform/graphics/GraphicsLayer.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/graphics/GraphicsLayerClient.h
diff --git a/Source/platform/graphics/GraphicsLayerClient.h b/Source/platform/graphics/GraphicsLayerClient.h
index 0c42e207b60b6457066e71fef16bd9b8c0d7c414..6c8bcb433f84b751c1a31f062c91b55b10b5e91b 100644
--- a/Source/platform/graphics/GraphicsLayerClient.h
+++ b/Source/platform/graphics/GraphicsLayerClient.h
@@ -52,7 +52,7 @@ typedef unsigned GraphicsLayerPaintingPhase;
enum {
LayerTreeNormal = 0,
LayerTreeIncludesDebugInfo = 1 << 0, // Dump extra debugging info like layer addresses.
- LayerTreeIncludesRepaintRects = 1 << 1,
+ LayerTreeIncludesPaintInvalidationRects = 1 << 1,
LayerTreeIncludesPaintingPhases = 1 << 2,
LayerTreeIncludesRootLayer = 1 << 3,
LayerTreeIncludesClipAndScrollParents = 1 << 4
@@ -67,7 +67,7 @@ public:
virtual void notifyAnimationStarted(const GraphicsLayer*, double monotonicTime) = 0;
virtual void paintContents(const GraphicsLayer*, GraphicsContext&, GraphicsLayerPaintingPhase, const IntRect& inClip) = 0;
- virtual bool isTrackingRepaints() const { return false; }
+ virtual bool isTrackingPaintInvalidations() const { return false; }
virtual String debugName(const GraphicsLayer*) = 0;
« no previous file with comments | « Source/platform/graphics/GraphicsLayer.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698