diff options
author | Moonchild <moonchild@palemoon.org> | 2021-03-11 06:43:10 +0000 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2021-03-11 06:43:10 +0000 |
commit | cc8a7e3f7b7d40967d2dd537b6343c87ba9138c7 (patch) | |
tree | be5418a62494a956557ac0e769773ed2d558fdde /gfx/layers | |
parent | dce8a3300b191eeebee6f15f3f6e0f5a12a177b1 (diff) | |
download | uxp-cc8a7e3f7b7d40967d2dd537b6343c87ba9138c7.tar.gz |
Issue #1053 - Remove MOZ_WIDGET_ANDROID and IDB_MOBILE
Diffstat (limited to 'gfx/layers')
-rw-r--r-- | gfx/layers/apz/src/APZCTreeManager.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gfx/layers/apz/src/APZCTreeManager.cpp b/gfx/layers/apz/src/APZCTreeManager.cpp index 00eb3f1834..297bf57fe2 100644 --- a/gfx/layers/apz/src/APZCTreeManager.cpp +++ b/gfx/layers/apz/src/APZCTreeManager.cpp @@ -1854,10 +1854,8 @@ APZCTreeManager::FindRootContentOrRootApzc() const { mTreeLock.AssertCurrentThreadOwns(); - // Note: this is intended to find the same "root" that would be found - // by AsyncCompositionManager::ApplyAsyncContentTransformToTree inside - // the MOZ_WIDGET_ANDROID block. That is, it should find the RCD node if there - // is one, or the root APZC if there is not. + // Note: this should find the RCD node if there is one, or the root APZC if + // there is not. // Since BreadthFirstSearch is a pre-order search, we first do a search for // the RCD, and then if we don't find one, we do a search for the root APZC. HitTestingTreeNode* resultNode = BreadthFirstSearch<ReverseIterator>(mRootNode.get(), |