Bug 880330 - Refactor crypto to use the new options API; r=bholley

This commit is contained in:
Eddy Bruel 2013-10-28 12:57:08 +01:00
Родитель 088abb9836
Коммит 359289b5e5
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -1849,7 +1849,7 @@ loser:
static nsISupports *
GetISupportsFromContext(JSContext *cx)
{
if (JS_GetOptions(cx) & JSOPTION_PRIVATE_IS_NSISUPPORTS)
if (JS::ContextOptionsRef(cx).privateIsNSISupports())
return static_cast<nsISupports *>(JS_GetContextPrivate(cx));
return nullptr;