| Index: third_party/WebKit/Source/platform/graphics/paint/ScrollPaintPropertyNode.cpp
|
| diff --git a/third_party/WebKit/Source/platform/graphics/paint/ScrollPaintPropertyNode.cpp b/third_party/WebKit/Source/platform/graphics/paint/ScrollPaintPropertyNode.cpp
|
| index accb40e3ebbe5a2d729a97b4943e90d53f81854a..f9b87e54f16540fc3598fa1179526c2f265f9e09 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/paint/ScrollPaintPropertyNode.cpp
|
| +++ b/third_party/WebKit/Source/platform/graphics/paint/ScrollPaintPropertyNode.cpp
|
| @@ -21,10 +21,11 @@ String ScrollPaintPropertyNode::toString() const {
|
| MainThreadScrollingReason::mainThreadScrollingReasonsAsText(
|
| m_mainThreadScrollingReasons);
|
| return String::format(
|
| - "scrollOffsetTranslation=%s clip=%s bounds=%s userScrollableHorizontal=%s"
|
| + "parent=%p scrollOffsetTranslation=%s clip=%s bounds=%s "
|
| + "userScrollableHorizontal=%s"
|
| " userScrollableVertical=%s mainThreadScrollingReasons=%s",
|
| - scrollOffset.toString().ascii().data(), m_clip.toString().ascii().data(),
|
| - m_bounds.toString().ascii().data(),
|
| + m_parent.get(), scrollOffset.toString().ascii().data(),
|
| + m_clip.toString().ascii().data(), m_bounds.toString().ascii().data(),
|
| m_userScrollableHorizontal ? "yes" : "no",
|
| m_userScrollableVertical ? "yes" : "no",
|
| mainThreadScrollingReasonsAsText.c_str());
|
|
|