зеркало из https://github.com/mozilla/pjs.git
Bug 242150 implement NPN_GetValue of NPNVisOfflineBool
patch by William Bardwell <wbardwel@curl.com> r+sr=jst
This commit is contained in:
Родитель
ca545d6073
Коммит
9250b719f5
|
@ -1811,9 +1811,17 @@ _getvalue(NPP npp, NPNVariable variable, void *result)
|
|||
*(NPBool*)result = FALSE;
|
||||
return NPERR_NO_ERROR;
|
||||
|
||||
case NPNVisOfflineBool:
|
||||
*(NPBool*)result = FALSE;
|
||||
case NPNVisOfflineBool: {
|
||||
PRBool offline = PR_FALSE;
|
||||
nsCOMPtr<nsIIOService> ioservice = do_GetService(NS_IOSERVICE_CONTRACTID, &res);
|
||||
if (NS_SUCCEEDED(res))
|
||||
res = ioservice->GetOffline(&offline);
|
||||
if (NS_FAILED(rv))
|
||||
return NPERR_GENERIC_ERROR;
|
||||
|
||||
*(NPBool*)result = offline;
|
||||
return NPERR_NO_ERROR;
|
||||
}
|
||||
|
||||
case NPNVserviceManager: {
|
||||
nsIServiceManager * sm;
|
||||
|
|
Загрузка…
Ссылка в новой задаче