Bug 1629668 - Remove DocGroup::ClearEventTarget(). r=farre

Differential Revision: https://phabricator.services.mozilla.com/D70733

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Andrew McCreight 2020-04-14 08:30:13 +00:00
Родитель 6fa211e927
Коммит 9fc2790f15
2 изменённых файлов: 0 добавлений и 7 удалений

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

@ -382,10 +382,5 @@ bool DocGroup::IsActive() const {
return false;
}
void DocGroup::ClearEventTarget() {
nsCOMPtr<LabellingEventTarget> target = do_QueryInterface(mEventTarget);
target->ClearDocGroup();
}
} // namespace dom
} // namespace mozilla

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

@ -130,8 +130,6 @@ class DocGroup final {
bool IsEmpty() const { return mDocuments.IsEmpty(); }
void ClearEventTarget();
private:
DocGroup(BrowsingContextGroup* aBrowsingContextGroup, const nsACString& aKey);