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

Unified Diff: third_party/WebKit/Source/modules/plugins/PluginOcclusionSupport.cpp

Issue 2727913005: Rename FrameView fields and methods *Widget* to ...FrameViewBase... (Closed)
Patch Set: Rename FrameView fields and methods *Widget* to ...FrameViewBase... Created 3 years, 9 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/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())
« no previous file with comments | « third_party/WebKit/Source/modules/plugins/PluginOcclusionSupport.h ('k') | third_party/WebKit/Source/platform/FrameViewBase.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698