Bug 1645528 - Code cleanups r=mattwoodrow

Remove dead code that was left in D93173 so file histories would
get preserved.

Depends on D93173

Differential Revision: https://phabricator.services.mozilla.com/D96934
This commit is contained in:
Robert Mader 2020-11-26 22:15:31 +00:00
Родитель 0d501f3c38
Коммит 2e779228b5
1 изменённых файлов: 0 добавлений и 20 удалений

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

@ -20,26 +20,6 @@ VsyncChild::VsyncChild()
VsyncChild::~VsyncChild() { MOZ_ASSERT(NS_IsMainThread()); }
/* do not delete yet so the file history is preserved
bool VsyncChild::SendObserve() {
MOZ_ASSERT(NS_IsMainThread());
if (!mObservingVsync && !mIsShutdown) {
mObservingVsync = true;
PVsyncChild::SendObserve();
}
return true;
}
bool VsyncChild::SendUnobserve() {
MOZ_ASSERT(NS_IsMainThread());
if (mObservingVsync && !mIsShutdown) {
mObservingVsync = false;
PVsyncChild::SendUnobserve();
}
return true;
}
*/
void VsyncChild::AddChildRefreshTimer(VsyncObserver* aVsyncObserver) {
MOZ_ASSERT(NS_IsMainThread());
MOZ_ASSERT(!mObservers.Contains(aVsyncObserver));