Commit 8366a796 authored by Philip Rogers's avatar Philip Rogers Committed by Commit Bot

Fix typo in ForAllThrottledLocalFrameViews

This patch fixes a typo in ForAllThrottledLocalFrameViews where it would
not recurse into throttled descendants.

Change-Id: Ib16c0fce3a37d2ac9a7f541b6a01a14c1eec8039
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2326731
Auto-Submit: Philip Rogers <pdr@chromium.org>
Commit-Queue: Stefan Zager <szager@chromium.org>
Reviewed-by: default avatarStefan Zager <szager@chromium.org>
Cr-Commit-Position: refs/heads/master@{#794197}
parent b9c89eea
......@@ -380,7 +380,7 @@ void LocalFrameView::ForAllThrottledLocalFrameViews(const Function& function) {
if (!child_local_frame)
continue;
if (LocalFrameView* child_view = child_local_frame->View())
child_view->ForAllNonThrottledLocalFrameViews(function);
child_view->ForAllThrottledLocalFrameViews(function);
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment