| Index: third_party/WebKit/Source/platform/graphics/paint/TransformDisplayItem.cpp
|
| diff --git a/third_party/WebKit/Source/platform/graphics/paint/TransformDisplayItem.cpp b/third_party/WebKit/Source/platform/graphics/paint/TransformDisplayItem.cpp
|
| index 50da105acc9a893fa2b2866786534d649f77dcd8..8ebd21fff0b7148c15c2ec0d73f9ef2dee906a9b 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/paint/TransformDisplayItem.cpp
|
| +++ b/third_party/WebKit/Source/platform/graphics/paint/TransformDisplayItem.cpp
|
| @@ -11,7 +11,7 @@
|
|
|
| namespace blink {
|
|
|
| -void BeginTransformDisplayItem::replay(GraphicsContext& context)
|
| +void BeginTransformDisplayItem::replay(GraphicsContext& context) const
|
| {
|
| context.save();
|
| context.concatCTM(m_transform);
|
| @@ -31,7 +31,7 @@ void BeginTransformDisplayItem::dumpPropertiesAsDebugString(WTF::StringBuilder&
|
| }
|
| #endif
|
|
|
| -void EndTransformDisplayItem::replay(GraphicsContext& context)
|
| +void EndTransformDisplayItem::replay(GraphicsContext& context) const
|
| {
|
| context.restore();
|
| }
|
|
|