diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:13:27 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:13:27 +0000 |
commit | 40a355a42d4a9444dc753c04c6608dade2f06a23 (patch) | |
tree | 871fc667d2de662f171103ce5ec067014ef85e61 /js/xpconnect/idl | |
parent | Adding upstream version 124.0.1. (diff) | |
download | firefox-40a355a42d4a9444dc753c04c6608dade2f06a23.tar.xz firefox-40a355a42d4a9444dc753c04c6608dade2f06a23.zip |
Adding upstream version 125.0.1.upstream/125.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'js/xpconnect/idl')
-rw-r--r-- | js/xpconnect/idl/xpccomponents.idl | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/js/xpconnect/idl/xpccomponents.idl b/js/xpconnect/idl/xpccomponents.idl index 0235228663..1d4155ed74 100644 --- a/js/xpconnect/idl/xpccomponents.idl +++ b/js/xpconnect/idl/xpccomponents.idl @@ -324,6 +324,9 @@ interface nsIXPCComponents_Utils : nsISupports * pointing to the same file will not cause the module to be re-evaluated, * but the symbols in EXPORTED_SYMBOLS will be exported into the * specified target object and the global object returned as above. + * + * TODO: Remove this once m-c, c-c, and out-of-tree code migrations finish + * (bug 1776175, bug 1881888). */ [implicit_jscontext,optional_argc] jsval import(in AUTF8String aResourceURI, [optional] in jsval targetObj); @@ -344,6 +347,9 @@ interface nsIXPCComponents_Utils : nsISupports /** * Returns true if the JSM is loaded into the system global previously via * the import method above. Returns false otherwise. + * + * TODO: Remove this once m-c, c-c, and out-of-tree code migrations finish + * (bug 1776175, bug 1881888). */ boolean isJSModuleLoaded(in AUTF8String aResourceURI); @@ -360,6 +366,9 @@ interface nsIXPCComponents_Utils : nsISupports * imported then this method will do nothing. * * @param resourceURI A resource:// URI string to unload the module from. + * + * TODO: Remove this once m-c, c-c, and out-of-tree code migrations finish + * (bug 1776175, bug 1881888). */ void unload(in AUTF8String registryLocation); |