Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Unified Diff: third_party/WebKit/Source/web/RemoteFrameClientImpl.cpp

Issue 1414663011: Notifying the Out of Process Renderer about Visibility Change of a Remote Frame (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed RenderWidgetHostViewChildFrame::SetVisibility Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/web/RemoteFrameClientImpl.cpp
diff --git a/third_party/WebKit/Source/web/RemoteFrameClientImpl.cpp b/third_party/WebKit/Source/web/RemoteFrameClientImpl.cpp
index e67b4f4aa35ae9c0fa31cca6defc7b385a87523b..8edcfbe5668498eda13891206aca865a2fe43410 100644
--- a/third_party/WebKit/Source/web/RemoteFrameClientImpl.cpp
+++ b/third_party/WebKit/Source/web/RemoteFrameClientImpl.cpp
@@ -173,4 +173,9 @@ void RemoteFrameClientImpl::frameRectsChanged(const IntRect& frameRect)
m_webFrame->client()->frameRectsChanged(frameRect);
}
+void RemoteFrameClientImpl::visibilityChanged(bool visible)
+{
+ m_webFrame->client()->visibilityChanged(visible);
+}
+
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698