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

Unified Diff: third_party/WebKit/Source/platform/graphics/paint/PaintController.h

Issue 2116693002: PaintChunk::id (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@CommitOnTheWay
Patch Set: Give PaintChunks ids Created 4 years, 5 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: third_party/WebKit/Source/platform/graphics/paint/PaintController.h
diff --git a/third_party/WebKit/Source/platform/graphics/paint/PaintController.h b/third_party/WebKit/Source/platform/graphics/paint/PaintController.h
index 28324670645b376f8e760f71a4ddbeda6c121aeb..b9fc664183e0305eab01368d867bbea1d80e3975 100644
--- a/third_party/WebKit/Source/platform/graphics/paint/PaintController.h
+++ b/third_party/WebKit/Source/platform/graphics/paint/PaintController.h
@@ -60,7 +60,7 @@ public:
// Provide a new set of paint chunk properties to apply to recorded display
// items, for Slimming Paint v2.
- void updateCurrentPaintChunkProperties(const PaintChunkProperties&);
+ void updateCurrentPaintChunkProperties(const DisplayItem::Id*, const PaintChunkProperties&);
// Retrieve the current paint properties.
const PaintChunkProperties& currentPaintChunkProperties() const;
@@ -111,7 +111,7 @@ public:
void beginSkippingCache() { ++m_skippingCacheCount; }
void endSkippingCache() { DCHECK(m_skippingCacheCount > 0); --m_skippingCacheCount; }
- bool skippingCache() const { return m_skippingCacheCount; }
+ bool isSkippingCache() const { return m_skippingCacheCount; }
// Must be called when a painting is finished.
// offsetFromLayoutObject is the offset between the space of the GraphicsLayer which owns this

Powered by Google App Engine
This is Rietveld 408576698