Bug 1318971 - Update !MOZ_WEBSPEECH case in ContentParent::RecvPSpeechSynthesisConstructor to return mozilla::ipc::IPCResult. r=kanru

This commit is contained in:
Tooru Fujisawa 2016-11-21 15:04:20 +09:00
Родитель ae8843de1e
Коммит 6359310306
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -3144,7 +3144,7 @@ ContentParent::RecvPSpeechSynthesisConstructor(PSpeechSynthesisParent* aActor)
#ifdef MOZ_WEBSPEECH
return IPC_OK();
#else
return false;
return IPC_FAIL_NO_REASON(this);
#endif
}