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

Unified Diff: third_party/WebKit/Source/core/frame/RemoteFrameView.cpp

Issue 2814643003: Remove FrameViewBase as base class of PluginView. (Closed)
Patch Set: Address final comments Created 3 years, 8 months 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/core/frame/RemoteFrameView.cpp
diff --git a/third_party/WebKit/Source/core/frame/RemoteFrameView.cpp b/third_party/WebKit/Source/core/frame/RemoteFrameView.cpp
index 5255fd0d9ceaba22fd1c1aa5d0d284ea20fdab4d..dd784310388351f4ce3f7d68e0bb315fdfc4b21f 100644
--- a/third_party/WebKit/Source/core/frame/RemoteFrameView.cpp
+++ b/third_party/WebKit/Source/core/frame/RemoteFrameView.cpp
@@ -115,16 +115,12 @@ void RemoteFrameView::FrameRectsChanged() {
void RemoteFrameView::Hide() {
SetSelfVisible(false);
- FrameViewBase::Hide();
-
remote_frame_->Client()->VisibilityChanged(false);
}
void RemoteFrameView::Show() {
SetSelfVisible(true);
- FrameViewBase::Show();
-
remote_frame_->Client()->VisibilityChanged(true);
}
« no previous file with comments | « third_party/WebKit/Source/core/frame/RemoteFrameView.h ('k') | third_party/WebKit/Source/core/html/HTMLFrameOwnerElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698