mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-27 07:34:20 +00:00
Remove unused argument to AsyncCompositionManager::WalkTheTree, no bug, r=mattwoodrow over irc
This commit is contained in:
parent
f9fe932a36
commit
0d9e8dfecc
@ -45,7 +45,6 @@ ContentMightReflowOnOrientationChange(const nsIntRect& rect)
|
|||||||
template<Op OP>
|
template<Op OP>
|
||||||
static void
|
static void
|
||||||
WalkTheTree(Layer* aLayer,
|
WalkTheTree(Layer* aLayer,
|
||||||
Layer* aParent,
|
|
||||||
bool& aReady,
|
bool& aReady,
|
||||||
const TargetConfig& aTargetConfig)
|
const TargetConfig& aTargetConfig)
|
||||||
{
|
{
|
||||||
@ -75,7 +74,7 @@ WalkTheTree(Layer* aLayer,
|
|||||||
}
|
}
|
||||||
for (Layer* child = aLayer->GetFirstChild();
|
for (Layer* child = aLayer->GetFirstChild();
|
||||||
child; child = child->GetNextSibling()) {
|
child; child = child->GetNextSibling()) {
|
||||||
WalkTheTree<OP>(child, aLayer, aReady, aTargetConfig);
|
WalkTheTree<OP>(child, aReady, aTargetConfig);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -83,7 +82,6 @@ void
|
|||||||
AsyncCompositionManager::ResolveRefLayers()
|
AsyncCompositionManager::ResolveRefLayers()
|
||||||
{
|
{
|
||||||
WalkTheTree<Resolve>(mLayerManager->GetRoot(),
|
WalkTheTree<Resolve>(mLayerManager->GetRoot(),
|
||||||
nullptr,
|
|
||||||
mReadyForCompose,
|
mReadyForCompose,
|
||||||
mTargetConfig);
|
mTargetConfig);
|
||||||
}
|
}
|
||||||
@ -92,7 +90,6 @@ void
|
|||||||
AsyncCompositionManager::DetachRefLayers()
|
AsyncCompositionManager::DetachRefLayers()
|
||||||
{
|
{
|
||||||
WalkTheTree<Detach>(mLayerManager->GetRoot(),
|
WalkTheTree<Detach>(mLayerManager->GetRoot(),
|
||||||
nullptr,
|
|
||||||
mReadyForCompose,
|
mReadyForCompose,
|
||||||
mTargetConfig);
|
mTargetConfig);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user