зеркало из https://github.com/mozilla/gecko-dev.git
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:
Родитель
0d501f3c38
Коммит
2e779228b5
|
@ -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));
|
||||
|
|
Загрузка…
Ссылка в новой задаче