Bug 1444580: Devirtualize GetCurrentContentSink. r=smaug

Another easy one.

MozReview-Commit-ID: DJnTRYTiHwH
This commit is contained in:
Emilio Cobos Álvarez 2018-03-11 13:59:45 +01:00
Родитель 50b16abb7e
Коммит 7e3e8b7ca3
3 изменённых файлов: 2 добавлений и 4 удалений

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

@ -9273,7 +9273,7 @@ nsDocument::UnsuppressEventHandlingAndFireEvents(bool aFireEvents)
}
nsISupports*
nsDocument::GetCurrentContentSink()
nsIDocument::GetCurrentContentSink()
{
return mParser ? mParser->GetContentSink() : nullptr;
}

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

@ -586,8 +586,6 @@ public:
virtual void MaybePreconnect(nsIURI* uri,
mozilla::CORSMode aCORSMode) override;
virtual nsISupports* GetCurrentContentSink() override;
// Only BlockOnload should call this!
void AsyncBlockOnload();

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

@ -2764,7 +2764,7 @@ public:
return mDocumentState;
}
virtual nsISupports* GetCurrentContentSink() = 0;
nsISupports* GetCurrentContentSink();
void SetAutoFocusElement(Element* aAutoFocusElement);
void TriggerAutoFocus();