| Index: third_party/WebKit/Source/core/paint/PaintControllerPaintTest.cpp
|
| diff --git a/third_party/WebKit/Source/core/paint/PaintControllerPaintTest.cpp b/third_party/WebKit/Source/core/paint/PaintControllerPaintTest.cpp
|
| index 256584c635e200cb0bc843d1984fdc2b6579d50f..e12eb525119c235b16e24a01e8d632763c7f16f8 100644
|
| --- a/third_party/WebKit/Source/core/paint/PaintControllerPaintTest.cpp
|
| +++ b/third_party/WebKit/Source/core/paint/PaintControllerPaintTest.cpp
|
| @@ -203,13 +203,13 @@ TEST_F(PaintControllerPaintTestForSlimmingPaintV2, ChunkIdClientCacheFlag) {
|
| DisplayItem::kClipFrameToVisibleContentRect)));
|
|
|
| const PaintChunk& backgroundChunk = rootPaintController().paintChunks()[0];
|
| - EXPECT_TRUE(backgroundChunk.properties.scroll->isRoot());
|
| + EXPECT_TRUE(backgroundChunk.properties.propertyTreeState.scroll()->isRoot());
|
|
|
| const EffectPaintPropertyNode* effectNode = div.paintProperties()->effect();
|
| EXPECT_EQ(0.5f, effectNode->opacity());
|
| const PaintChunk& chunk = rootPaintController().paintChunks()[1];
|
| EXPECT_EQ(*div.layer(), chunk.id->client);
|
| - EXPECT_EQ(effectNode, chunk.properties.effect.get());
|
| + EXPECT_EQ(effectNode, chunk.properties.propertyTreeState.effect());
|
|
|
| EXPECT_FALSE(div.layer()->isJustCreated());
|
| // Client used by only paint chunks and non-cachaeable display items but not
|
|
|