зеркало из https://github.com/mozilla/pjs.git
Bug 68933 r=Ed Burns and Mike Shaver sr=Mike Shaver
Function name changed due to idl convention
This commit is contained in:
Родитель
02ea0e00d0
Коммит
6f268c170b
|
@ -71,44 +71,38 @@ interface nsIJVMManager : nsISupports {
|
|||
* calling this method multiple times from the same thread will return
|
||||
* the same proxy JNI.
|
||||
*/
|
||||
[noscript] void CreateProxyJNI(in nsISecureEnv secureEnv, out JNIEnv outProxyEnv);
|
||||
[noscript] void createProxyJNI(in nsISecureEnv secureEnv, out JNIEnv outProxyEnv);
|
||||
|
||||
/**
|
||||
* Returns the proxy JNI associated with the current thread, or NULL if no
|
||||
* such association exists.
|
||||
*/
|
||||
[noscript] void GetProxyJNI(out JNIEnv outProxyEnv);
|
||||
|
||||
/**
|
||||
* Returns whether or not Java is enabled.
|
||||
*/
|
||||
void IsJavaEnabled(out boolean outEnabled);
|
||||
|
||||
/**
|
||||
* Returns whether or not Java is enabled.
|
||||
*/
|
||||
boolean JavaEnabled();
|
||||
[noscript] void getProxyJNI(out JNIEnv outProxyEnv);
|
||||
|
||||
/**
|
||||
* Called from Java Console menu item.
|
||||
*/
|
||||
|
||||
void ShowJavaConsole();
|
||||
void showJavaConsole();
|
||||
|
||||
/**
|
||||
* IsAllPermissionGranted [Deprecated Sep-10-2000]
|
||||
* isAllPermissionGranted [Deprecated Sep-10-2000]
|
||||
*/
|
||||
|
||||
void IsAllPermissionGranted(in string lastFingerprint,in string lastCommonName,
|
||||
in string rootFingerprint,in string rootCommonName,
|
||||
out boolean isGranted);
|
||||
boolean isAllPermissionGranted(in string lastFingerprint,in string lastCommonName,
|
||||
in string rootFingerprint,in string rootCommonName);
|
||||
|
||||
/**
|
||||
* IsAppletTrusted
|
||||
* isAppletTrusted
|
||||
*/
|
||||
|
||||
nsIPrincipal IsAppletTrusted(in string aRSABuf, in PRUint32 aRSABufLen,
|
||||
nsIPrincipal isAppletTrusted(in string aRSABuf, in PRUint32 aRSABufLen,
|
||||
in string aPlaintext, in PRUint32 aPlaintextLen,
|
||||
out boolean isTrusted);
|
||||
|
||||
/**
|
||||
* The JavaEnabled variable to see if Java is Enabled or not
|
||||
*/
|
||||
|
||||
readonly attribute boolean JavaEnabled;
|
||||
};
|
||||
|
|
Загрузка…
Ссылка в новой задаче