| 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 2f0ec93decdc0740e811af964dae9a4796203954..0fdb26ccb0f139a5f54035d955b156ae921ace7a 100644
|
| --- a/third_party/WebKit/Source/core/frame/FrameView.cpp
|
| +++ b/third_party/WebKit/Source/core/frame/FrameView.cpp
|
| @@ -1294,6 +1294,12 @@ void FrameView::invalidatePaintIfNeeded(
|
| m_frame->selection().invalidateCaretRect();
|
| }
|
|
|
| +void FrameView::setNeedsPaintPropertyUpdate() {
|
| + m_needsPaintPropertyUpdate = true;
|
| + if (LayoutObject* owner = frame().ownerLayoutObject())
|
| + owner->setNeedsPaintPropertyUpdate();
|
| +}
|
| +
|
| IntRect FrameView::computeVisibleArea() {
|
| // Return our clipping bounds in the root frame.
|
| IntRect us(frameRect());
|
|
|