| Index: third_party/WebKit/Source/platform/graphics/paint/ScrollDisplayItem.cpp
|
| diff --git a/third_party/WebKit/Source/platform/graphics/paint/ScrollDisplayItem.cpp b/third_party/WebKit/Source/platform/graphics/paint/ScrollDisplayItem.cpp
|
| index 77efe28d451e26c476329ed7d7ff2cbed67b6830..07f2e900b087ef12ed8ea145779cdc704618df9d 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/paint/ScrollDisplayItem.cpp
|
| +++ b/third_party/WebKit/Source/platform/graphics/paint/ScrollDisplayItem.cpp
|
| @@ -11,7 +11,7 @@
|
|
|
| namespace blink {
|
|
|
| -void BeginScrollDisplayItem::replay(GraphicsContext& context)
|
| +void BeginScrollDisplayItem::replay(GraphicsContext& context) const
|
| {
|
| context.save();
|
| context.translate(-m_currentOffset.width(), -m_currentOffset.height());
|
| @@ -31,7 +31,7 @@ void BeginScrollDisplayItem::dumpPropertiesAsDebugString(WTF::StringBuilder& str
|
| }
|
| #endif
|
|
|
| -void EndScrollDisplayItem::replay(GraphicsContext& context)
|
| +void EndScrollDisplayItem::replay(GraphicsContext& context) const
|
| {
|
| context.restore();
|
| }
|
|
|