| Index: third_party/WebKit/Source/core/frame/FrameView.cpp
|
| diff --git a/third_party/WebKit/Source/core/frame/FrameView.cpp b/third_party/WebKit/Source/core/frame/FrameView.cpp
|
| index a7254f82cf1954e4841113cd7d203798305245b5..e91021b0f2cc28326342d446b8a032bc96911370 100644
|
| --- a/third_party/WebKit/Source/core/frame/FrameView.cpp
|
| +++ b/third_party/WebKit/Source/core/frame/FrameView.cpp
|
| @@ -4719,9 +4719,6 @@ void FrameView::SetParentVisible(bool visible) {
|
|
|
| for (const auto& child : children_)
|
| child->SetParentVisible(visible);
|
| -
|
| - for (const auto& plugin : plugins_)
|
| - plugin->SetParentVisible(visible);
|
| }
|
|
|
| void FrameView::Show() {
|
| @@ -4742,9 +4739,6 @@ void FrameView::Show() {
|
| if (IsParentVisible()) {
|
| for (const auto& child : children_)
|
| child->SetParentVisible(true);
|
| -
|
| - for (const auto& plugin : plugins_)
|
| - plugin->SetParentVisible(true);
|
| }
|
| }
|
|
|
| @@ -4756,9 +4750,6 @@ void FrameView::Hide() {
|
| if (IsParentVisible()) {
|
| for (const auto& child : children_)
|
| child->SetParentVisible(false);
|
| -
|
| - for (const auto& plugin : plugins_)
|
| - plugin->SetParentVisible(false);
|
| }
|
| SetSelfVisible(false);
|
| if (ScrollingCoordinator* scrolling_coordinator =
|
|
|