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

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: Rebased & Added Blink Unit Tests Created 5 years 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 8fe8e268e8c4c7de9c277ce416c64a90391eab15..ef1e94a06a2b036f40c51404907acde4e104e590 100644
--- a/third_party/WebKit/Source/web/RemoteFrameClientImpl.cpp
+++ b/third_party/WebKit/Source/web/RemoteFrameClientImpl.cpp
@@ -198,4 +198,8 @@ void RemoteFrameClientImpl::advanceFocus(WebFocusType type, LocalFrame* source)
m_webFrame->client()->advanceFocus(type, WebLocalFrameImpl::fromFrame(source));
}
+void RemoteFrameClientImpl::visibilityChanged(bool visible)
+{
+ m_webFrame->client()->visibilityChanged(visible);
+}
dcheng 2016/01/06 18:43:58 Nit: newline
EhsanK 2016/01/08 22:05:37 Done.
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698