Bug 1417442 - P1. Don't attempt to initialize MediaPrefs in the GPU process. r=dvander

MozReview-Commit-ID: 66766Tx8vgM

--HG--
extra : rebase_source : 43e37d4fc43d51f5e9f185a30965800d2f4f7830
This commit is contained in:
Jean-Yves Avenard 2017-11-16 17:21:09 +01:00
Родитель 044769e0f9
Коммит 73c4627a67
1 изменённых файлов: 4 добавлений и 1 удалений

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

@ -591,7 +591,10 @@ GfxInfoBase::Init()
{
InitGfxDriverInfoShutdownObserver();
gfxPrefs::GetSingleton();
MediaPrefs::GetSingleton();
if (!XRE_IsGPUProcess()) {
// MediaPrefs can't run in the GPU process.
MediaPrefs::GetSingleton();
}
nsCOMPtr<nsIObserverService> os = mozilla::services::GetObserverService();
if (os) {