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

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: Address chrishtr's comments. 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 be361ce4511ce4085dac1290e1e2cdfef1233ba1..d95c29fd2e1f1efe720d5d42da4c33e966ef9468 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 PaintChunk::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