| 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 9632a87741bf2a7b1614cd3b7008bf9815c132d6..7c2e6635b532f91eb57d62f1a6afbad1f2de28cb 100644
|
| --- a/third_party/WebKit/Source/core/frame/RemoteFrame.cpp
|
| +++ b/third_party/WebKit/Source/core/frame/RemoteFrame.cpp
|
| @@ -145,6 +145,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,
|
|
|