Bug 1865891 p6. Rename EvictExpiredContentViewerForEntry to match nsIDocumentViewer's new name. r=emilio

Depends on D194278

Differential Revision: https://phabricator.services.mozilla.com/D194279
This commit is contained in:
Jonathan Watt 2023-11-22 08:08:14 +00:00
Родитель 48f38a5ac1
Коммит 7ba3a711d7
3 изменённых файлов: 3 добавлений и 3 удалений

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

@ -204,7 +204,7 @@ interface nsISHistory: nsISupports
* out.
*/
[noscript, notxpcom]
void evictExpiredContentViewerForEntry(in SHEntrySharedParentStatePtr aEntry);
void evictExpiredDocumentViewerForEntry(in SHEntrySharedParentStatePtr aEntry);
/**
* Evict all the content viewers in this session history

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

@ -1739,7 +1739,7 @@ nsresult nsSHistory::FindEntryForBFCache(SHEntrySharedParentState* aEntry,
}
NS_IMETHODIMP_(void)
nsSHistory::EvictExpiredContentViewerForEntry(
nsSHistory::EvictExpiredDocumentViewerForEntry(
SHEntrySharedParentState* aEntry) {
int32_t index;
nsCOMPtr<nsISHEntry> shEntry;

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

@ -51,7 +51,7 @@ class nsSHistory : public mozilla::LinkedListElement<nsSHistory>,
virtual void NotifyExpired(
mozilla::dom::SHEntrySharedParentState* aObj) override {
RemoveObject(aObj);
mSHistory->EvictExpiredContentViewerForEntry(aObj);
mSHistory->EvictExpiredDocumentViewerForEntry(aObj);
}
private: