summaryrefslogtreecommitdiff
path: root/system
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2022-04-21 15:53:14 -0500
committerMatt A. Tobin <email@mattatobin.com>2022-04-21 15:53:14 -0500
commitf51cbd52221acd3971410dc3c4b77bb961cd8b63 (patch)
tree7240ede0bfd4dde6dec5eba3a029c8beca2a7175 /system
parentb95ffb1b3bf2bf7d7206fd1b38d10689b862085b (diff)
downloadaura-central-f51cbd52221acd3971410dc3c4b77bb961cd8b63.tar.gz
Issue #25 - Part 17: Remove XREChildData
Diffstat (limited to 'system')
-rw-r--r--system/runtime/nsEmbedFunctions.cpp8
1 files changed, 1 insertions, 7 deletions
diff --git a/system/runtime/nsEmbedFunctions.cpp b/system/runtime/nsEmbedFunctions.cpp
index 841ea2a2d..02cd1e39d 100644
--- a/system/runtime/nsEmbedFunctions.cpp
+++ b/system/runtime/nsEmbedFunctions.cpp
@@ -232,17 +232,11 @@ SetTaskbarGroupId(const nsString& aId)
nsresult
XRE_InitChildProcess(int aArgc,
- char* aArgv[],
- const XREChildData* aChildData)
+ char* aArgv[])
{
NS_ENSURE_ARG_MIN(aArgc, 2);
NS_ENSURE_ARG_POINTER(aArgv);
NS_ENSURE_ARG_POINTER(aArgv[0]);
- MOZ_ASSERT(aChildData);
-
- // On non-Fennec Gecko, the GMPLoader code resides in plugin-container,
- // and we must forward it through to the GMP code here.
- GMPProcessChild::SetGMPLoader(aChildData->gmpLoader.get());
#if defined(XP_WIN)
// From the --attach-console support in nsNativeAppSupportWin.cpp, but