| 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;
|
| }
|
|
|
|
|