diff options
author | Matt A. Tobin <email@mattatobin.com> | 2022-04-20 10:57:01 -0500 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2022-04-20 10:57:01 -0500 |
commit | 1e640f82104e57d63e268785f75914ca7d3953ce (patch) | |
tree | e4f99f2ae903bf4c99ea62a154b7d19586256b02 /system | |
parent | 9bf43033f3210dbd154cec9595847aae6ece0020 (diff) | |
download | aura-central-1e640f82104e57d63e268785f75914ca7d3953ce.tar.gz |
Revert "Issue %3015 - Part 2: Remove XREChildData."
This reverts commit bca6f8a4592bb03a25b8228392e5e2b58a39cc82.
Diffstat (limited to 'system')
-rw-r--r-- | system/runtime/nsEmbedFunctions.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/system/runtime/nsEmbedFunctions.cpp b/system/runtime/nsEmbedFunctions.cpp index def157cf8..9c1aca494 100644 --- a/system/runtime/nsEmbedFunctions.cpp +++ b/system/runtime/nsEmbedFunctions.cpp @@ -226,11 +226,13 @@ SetTaskbarGroupId(const nsString& aId) nsresult XRE_InitChildProcess(int aArgc, - char* aArgv[]) + char* aArgv[], + const XREChildData* aChildData) { NS_ENSURE_ARG_MIN(aArgc, 2); NS_ENSURE_ARG_POINTER(aArgv); NS_ENSURE_ARG_POINTER(aArgv[0]); + MOZ_ASSERT(aChildData); #if defined(XP_WIN) // From the --attach-console support in nsNativeAppSupportWin.cpp, but |