| Index: third_party/WebKit/Source/core/frame/RemoteFrame.cpp
|
| diff --git a/third_party/WebKit/Source/core/frame/RemoteFrame.cpp b/third_party/WebKit/Source/core/frame/RemoteFrame.cpp
|
| index 1d8a4ca02a600a6052ab15e376bbd9f13a9cceb0..3989f3e99c127c488c9e95a5ffaba08bc658acff 100644
|
| --- a/third_party/WebKit/Source/core/frame/RemoteFrame.cpp
|
| +++ b/third_party/WebKit/Source/core/frame/RemoteFrame.cpp
|
| @@ -139,6 +139,12 @@ void RemoteFrame::frameRectsChanged(const IntRect& frameRect)
|
| remoteFrameClient()->frameRectsChanged(frameRect);
|
| }
|
|
|
| +void RemoteFrame::visibilityChanged(bool visible)
|
| +{
|
| + if (remoteFrameClient())
|
| + remoteFrameClient()->visibilityChanged(visible);
|
| +}
|
| +
|
| void RemoteFrame::setView(PassRefPtrWillBeRawPtr<RemoteFrameView> view)
|
| {
|
| // Oilpan: as RemoteFrameView performs no finalization actions,
|
|
|