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

Unified Diff: third_party/WebKit/Source/platform/graphics/paint/PaintChunker.cpp

Issue 1397583002: Implement the framework for a paint property hierarchy (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Job insecurity: better tests, better comments, better names. Created 5 years, 2 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/PaintChunker.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/paint/PaintChunker.cpp b/third_party/WebKit/Source/platform/graphics/paint/PaintChunker.cpp
index 2616ccaef8dbd931ed3f7f535544cd743ad9600c..cf5e9e08e6d3d8fb1363796046173096e93032ca 100644
--- a/third_party/WebKit/Source/platform/graphics/paint/PaintChunker.cpp
+++ b/third_party/WebKit/Source/platform/graphics/paint/PaintChunker.cpp
@@ -17,7 +17,7 @@ PaintChunker::~PaintChunker()
{
}
-void PaintChunker::updateCurrentPaintProperties(const PaintProperties& properties)
+void PaintChunker::updateCurrentPaintChunkProperties(const PaintChunkProperties& properties)
{
ASSERT(RuntimeEnabledFeatures::slimmingPaintV2Enabled());
@@ -60,7 +60,7 @@ Vector<PaintChunk> PaintChunker::releasePaintChunks()
{
Vector<PaintChunk> chunks;
chunks.swap(m_chunks);
- m_currentProperties = PaintProperties();
+ m_currentProperties = PaintChunkProperties();
return chunks;
}

Powered by Google App Engine
This is Rietveld 408576698