| Index: Source/core/paint/DeprecatedPaintLayerReflectionInfo.cpp
|
| diff --git a/Source/core/paint/DeprecatedPaintLayerReflectionInfo.cpp b/Source/core/paint/DeprecatedPaintLayerReflectionInfo.cpp
|
| index e2c5d6bd88134fa1f93ba75f033e91dc4f42dfd8..8c3344c1e2f9f79fd84c1d8bb6782afef1ea047c 100644
|
| --- a/Source/core/paint/DeprecatedPaintLayerReflectionInfo.cpp
|
| +++ b/Source/core/paint/DeprecatedPaintLayerReflectionInfo.cpp
|
| @@ -46,7 +46,7 @@
|
|
|
| #include "core/frame/UseCounter.h"
|
| #include "core/layout/LayoutReplica.h"
|
| -#include "core/layout/style/LayoutStyle.h"
|
| +#include "core/layout/style/ComputedStyle.h"
|
| #include "core/paint/DeprecatedPaintLayer.h"
|
| #include "core/paint/DeprecatedPaintLayerPainter.h"
|
| #include "platform/transforms/ScaleTransformOperation.h"
|
| @@ -81,9 +81,9 @@ DeprecatedPaintLayer* DeprecatedPaintLayerReflectionInfo::reflectionLayer() cons
|
| return m_reflection->layer();
|
| }
|
|
|
| -void DeprecatedPaintLayerReflectionInfo::updateAfterStyleChange(const LayoutStyle* oldStyle)
|
| +void DeprecatedPaintLayerReflectionInfo::updateAfterStyleChange(const ComputedStyle* oldStyle)
|
| {
|
| - RefPtr<LayoutStyle> newStyle = LayoutStyle::create();
|
| + RefPtr<ComputedStyle> newStyle = ComputedStyle::create();
|
| newStyle->inheritFrom(box().styleRef());
|
|
|
| // Map in our transform.
|
|
|