| Index: third_party/WebKit/Source/core/frame/FrameView.cpp
|
| diff --git a/third_party/WebKit/Source/core/frame/FrameView.cpp b/third_party/WebKit/Source/core/frame/FrameView.cpp
|
| index b42da5159917ed6d0fa5d353d69374a060836dc3..c1c7eaac846cca419412ec792d1a0ec05eb52f11 100644
|
| --- a/third_party/WebKit/Source/core/frame/FrameView.cpp
|
| +++ b/third_party/WebKit/Source/core/frame/FrameView.cpp
|
| @@ -1300,6 +1300,12 @@ void FrameView::invalidatePaintIfNeeded(
|
| layoutViewItem().sendMediaPositionChangeNotifications(visibleRect);
|
| }
|
|
|
| +void FrameView::setNeedsPaintPropertyUpdate() {
|
| + m_needsPaintPropertyUpdate = true;
|
| + if (LayoutObject* owner = frame().ownerLayoutObject())
|
| + owner->setDescendantNeedsPaintPropertyUpdate();
|
| +}
|
| +
|
| IntRect FrameView::computeVisibleArea() {
|
| // Return our clipping bounds in the root frame.
|
| IntRect us(frameRect());
|
|
|