Bug 673440 - add support for NPNVSupportsCompositingCoreAnimationPluginsBool; r=josh

--HG--
extra : rebase_source : 9601c70b14876f40ad3fa333fe522f2fe49e41f4
This commit is contained in:
Benoit Girard 2011-07-31 13:37:06 -04:00
Родитель c5505c7bb5
Коммит b5300e8a06
2 изменённых файлов: 18 добавлений и 8 удалений

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

@ -2189,18 +2189,23 @@ _getvalue(NPP npp, NPNVariable variable, void *result)
return NPERR_NO_ERROR;
}
case NPNVsupportsCoreAnimationBool: {
*(NPBool*)result = PR_TRUE;
case NPNVsupportsCoreAnimationBool: {
*(NPBool*)result = PR_TRUE;
return NPERR_NO_ERROR;
}
return NPERR_NO_ERROR;
}
case NPNVsupportsInvalidatingCoreAnimationBool: {
*(NPBool*)result = PR_TRUE;
case NPNVsupportsInvalidatingCoreAnimationBool: {
*(NPBool*)result = PR_TRUE;
return NPERR_NO_ERROR;
}
return NPERR_NO_ERROR;
}
case NPNVsupportsCompositingCoreAnimationPluginsBool: {
*(NPBool*)result = PR_TRUE;
return NPERR_NO_ERROR;
}
#ifndef NP_NO_CARBON
case NPNVsupportsCarbonBool: {

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

@ -402,6 +402,11 @@ PluginInstanceChild::NPN_GetValue(NPNVariable aVar,
return NPERR_NO_ERROR;
}
case NPNVsupportsCompositingCoreAnimationPluginsBool: {
*((NPBool*)aValue) = true;
return NPERR_NO_ERROR;
}
case NPNVsupportsCocoaBool: {
*((NPBool*)aValue) = true;
return NPERR_NO_ERROR;