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

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

Issue 2738783003: Rename ChildrenWidgetSet to ChildrenSet (Closed)
Patch Set: 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/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 9ac33a519821b6a8cbe5616c74a1de6c0eef7daf..2178e9d5b96f3afa7467040a83a685adc3f5666c 100644
--- a/third_party/WebKit/Source/core/frame/FrameView.cpp
+++ b/third_party/WebKit/Source/core/frame/FrameView.cpp
@@ -490,7 +490,7 @@ void FrameView::invalidateAllCustomScrollbarsOnActiveChanged() {
bool usesWindowInactiveSelector =
m_frame->document()->styleEngine().usesWindowInactiveSelector();
- const ChildrenWidgetSet* viewChildren = children();
+ const ChildrenSet* viewChildren = children();
for (const Member<FrameViewBase>& child : *viewChildren) {
FrameViewBase* frameViewBase = child.get();
if (frameViewBase->isFrameView()) {
@@ -3310,7 +3310,7 @@ void FrameView::updateStyleAndLayoutIfNeededRecursiveInternal() {
// TODO(leviw): This currently runs the entire lifecycle on plugin WebViews.
// We should have a way to only run these other Documents to the same
// lifecycle stage as this frame.
- const ChildrenWidgetSet* viewChildren = children();
+ const ChildrenSet* viewChildren = children();
for (const Member<FrameViewBase>& child : *viewChildren) {
if ((*child).isPluginContainer())
toPluginView(child.get())->updateAllLifecyclePhases();

Powered by Google App Engine
This is Rietveld 408576698