Bug 1586110 - VRManager should only be called in parent process or GPU process. r=kip

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

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Daosheng Mu 2019-10-17 18:31:12 +00:00
Родитель 03e9adc167
Коммит 57782480e1
1 изменённых файлов: 1 добавлений и 0 удалений

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

@ -78,6 +78,7 @@ static StaticRefPtr<VRManager> sVRManagerSingleton;
/* static */
VRManager* VRManager::Get() {
MOZ_ASSERT(sVRManagerSingleton != nullptr);
MOZ_ASSERT(XRE_IsParentProcess() || XRE_IsGPUProcess());
return sVRManagerSingleton;
}