Bug 1407463 - Drop unused pseudo atom argument from GetBaseContextForElement. r=heycam

MozReview-Commit-ID: JJ2Jh1I6y4h

--HG--
extra : rebase_source : 99c458dfffee88103e5f2b01f9ff9ae0256b8c62
This commit is contained in:
Hiroyuki Ikezoe 2017-10-11 10:00:37 +09:00
Родитель a5c66d4d97
Коммит 2b54925c5c
4 изменённых файлов: 2 добавлений и 5 удалений

Просмотреть файл

@ -557,7 +557,6 @@ KeyframeEffectReadOnly::EnsureBaseStyle(
aPresContext->StyleSet()->AsServo()->GetBaseContextForElement(
mTarget->mElement,
aPresContext,
nullptr,
aPseudoType,
aComputedStyle);
}

Просмотреть файл

@ -1221,7 +1221,6 @@ already_AddRefed<ServoStyleContext>
ServoStyleSet::GetBaseContextForElement(
Element* aElement,
nsPresContext* aPresContext,
nsAtom* aPseudoTag,
CSSPseudoElementType aPseudoType,
const ServoStyleContext* aStyle)
{

Просмотреть файл

@ -389,7 +389,6 @@ public:
already_AddRefed<ServoStyleContext>
GetBaseContextForElement(dom::Element* aElement,
nsPresContext* aPresContext,
nsAtom* aPseudoTag,
CSSPseudoElementType aPseudoType,
const ServoStyleContext* aStyle);

Просмотреть файл

@ -715,7 +715,7 @@ nsComputedDOMStyle::DoGetStyleContextNoFlush(Element* aElement,
} else {
return presContext->StyleSet()->AsServo()->
GetBaseContextForElement(aElement, presContext,
aPseudo, pseudoType, result->AsServo());
pseudoType, result->AsServo());
}
}
@ -748,7 +748,7 @@ nsComputedDOMStyle::DoGetStyleContextNoFlush(Element* aElement,
}
return servoSet->GetBaseContextForElement(aElement, presContext,
aPseudo, pseudoType, result);
pseudoType, result);
}
RefPtr<GeckoStyleContext> parentContext;