Bug 1416384 - Part 7: Move nsPIDOMWindow{Inner,Outer}::TabGroup into their respective cpps, r=smaug

MozReview-Commit-ID: AZMWwKFnvG9

--HG--
extra : rebase_source : 6d4cc4f5af7e244c54972aa1afeeb81f98b0c5cb
This commit is contained in:
Nika Layzell 2017-11-15 11:34:33 -05:00
Родитель b4d99baba8
Коммит 4f66908aed
3 изменённых файлов: 12 добавлений и 12 удалений

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

@ -794,18 +794,6 @@ IsInterval(const Optional<int32_t>& aTimeout, int32_t& aResultTimeout)
return false;
}
mozilla::dom::TabGroup*
nsPIDOMWindowInner::TabGroup()
{
return nsGlobalWindowInner::Cast(this)->TabGroupInner();
}
mozilla::dom::TabGroup*
nsPIDOMWindowOuter::TabGroup()
{
return nsGlobalWindowOuter::Cast(this)->TabGroupOuter();
}
template<typename T>
mozilla::dom::DocGroup*
nsPIDOMWindow<T>::GetDocGroup() const

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

@ -7932,6 +7932,12 @@ nsGlobalWindowInner::GetIntlUtils(ErrorResult& aError)
return mIntlUtils;
}
mozilla::dom::TabGroup*
nsPIDOMWindowInner::TabGroup()
{
return nsGlobalWindowInner::Cast(this)->TabGroupInner();
}
/* static */ already_AddRefed<nsGlobalWindowInner>
nsGlobalWindowInner::Create(nsGlobalWindowOuter *aOuterWindow, bool aIsChrome)
{

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

@ -8087,6 +8087,12 @@ nsGlobalWindowOuter::TemporarilyDisableDialogs::~TemporarilyDisableDialogs()
}
}
mozilla::dom::TabGroup*
nsPIDOMWindowOuter::TabGroup()
{
return nsGlobalWindowOuter::Cast(this)->TabGroupOuter();
}
/* static */ already_AddRefed<nsGlobalWindowOuter>
nsGlobalWindowOuter::Create(bool aIsChrome)
{