Bug 1638928 Part 2 - Rename nsIFrame's GetChildLists() to ChildLists(). r=mats

This patch is generated by using my editor's rename functionality.

In the next patch, `nsIFrame::` prefix is going to be removed manually
from all the ChildLists() calls.

Differential Revision: https://phabricator.services.mozilla.com/D75893
This commit is contained in:
Ting-Yu Lin
2020-05-19 12:37:37 +00:00
parent 7b65747a02
commit 1bcc656a6a
21 changed files with 51 additions and 51 deletions

View File

@@ -526,7 +526,7 @@ void nsBlockFrame::List(FILE* out, const char* aPrefix,
// skip the principal list - we printed the lines above
// skip the overflow list - we printed the overflow lines above
ChildListIDs skip = {kPrincipalList, kOverflowList};
for (const auto& [list, listID] : nsIFrame::GetChildLists()) {
for (const auto& [list, listID] : nsIFrame::ChildLists()) {
if (skip.contains(listID)) {
continue;
}