summaryrefslogtreecommitdiffstats
path: root/js/xpconnect/tests/components/native/xpctest_esmreturncode.cpp
blob: 758cab65da9308b684923bb1ac79735012ca232d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

#include "xpctest_private.h"
#include "nsComponentManagerUtils.h"
#include "nsImportModule.h"

NS_IMPL_ISUPPORTS(nsXPCTestESMReturnCodeParent, nsIXPCTestReturnCodeParent)

NS_IMETHODIMP nsXPCTestESMReturnCodeParent::CallChild(int32_t childBehavior,
                                                      nsresult* _retval) {
  nsresult rv;
  nsCOMPtr<nsIXPCTestReturnCodeChild> child(do_ImportESModule(
      "resource://test/ReturnCodeChild.sys.mjs", "ReturnCodeChild", &rv));
  NS_ENSURE_SUCCESS(rv, rv);
  rv = child->DoIt(childBehavior);
  *_retval = rv;
  return NS_OK;
}