| Index: third_party/WebKit/Source/modules/plugins/PluginOcclusionSupport.cpp
|
| diff --git a/third_party/WebKit/Source/modules/plugins/PluginOcclusionSupport.cpp b/third_party/WebKit/Source/modules/plugins/PluginOcclusionSupport.cpp
|
| index d5724ec3702ed47b36ab6b25ee35227340ca34b7..77e603dbd264b8abebf2be8a249e35d96d0e4828 100644
|
| --- a/third_party/WebKit/Source/modules/plugins/PluginOcclusionSupport.cpp
|
| +++ b/third_party/WebKit/Source/modules/plugins/PluginOcclusionSupport.cpp
|
| @@ -170,8 +170,10 @@ void getPluginOcclusions(Element* element,
|
| FrameView* parentFrameView = toFrameView(parentFrameViewBase);
|
|
|
| // Occlusions by iframes.
|
| - const FrameView::ChildrenWidgetSet* children = parentFrameView->children();
|
| - for (FrameView::ChildrenWidgetSet::const_iterator it = children->begin();
|
| + const FrameView::ChildrenFrameViewBaseSet* children =
|
| + parentFrameView->children();
|
| + for (FrameView::ChildrenFrameViewBaseSet::const_iterator it =
|
| + children->begin();
|
| it != children->end(); ++it) {
|
| // We only care about FrameView's because iframes show up as FrameViews.
|
| if (!(*it)->isFrameView())
|
|
|