@@ -19,7 +19,7 @@ namespace dom {
1919mozilla::ipc::IPCResult WebAuthnTransactionParent::RecvRequestRegister (
2020 const uint64_t & aTransactionId,
2121 const WebAuthnMakeCredentialInfo& aTransactionInfo) {
22- AssertIsOnBackgroundThread ();
22+ ::mozilla::ipc:: AssertIsOnBackgroundThread ();
2323
2424#ifdef OS_WIN
2525 if (WinWebAuthnManager::AreWebAuthNApisAvailable ()) {
@@ -40,7 +40,7 @@ mozilla::ipc::IPCResult WebAuthnTransactionParent::RecvRequestRegister(
4040mozilla::ipc::IPCResult WebAuthnTransactionParent::RecvRequestSign (
4141 const uint64_t & aTransactionId,
4242 const WebAuthnGetAssertionInfo& aTransactionInfo) {
43- AssertIsOnBackgroundThread ();
43+ ::mozilla::ipc:: AssertIsOnBackgroundThread ();
4444
4545#ifdef OS_WIN
4646 if (WinWebAuthnManager::AreWebAuthNApisAvailable ()) {
@@ -60,7 +60,7 @@ mozilla::ipc::IPCResult WebAuthnTransactionParent::RecvRequestSign(
6060
6161mozilla::ipc::IPCResult WebAuthnTransactionParent::RecvRequestCancel (
6262 const uint64_t & aTransactionId) {
63- AssertIsOnBackgroundThread ();
63+ ::mozilla::ipc:: AssertIsOnBackgroundThread ();
6464
6565#ifdef OS_WIN
6666 if (WinWebAuthnManager::AreWebAuthNApisAvailable ()) {
@@ -79,7 +79,7 @@ mozilla::ipc::IPCResult WebAuthnTransactionParent::RecvRequestCancel(
7979}
8080
8181mozilla::ipc::IPCResult WebAuthnTransactionParent::RecvDestroyMe () {
82- AssertIsOnBackgroundThread ();
82+ ::mozilla::ipc:: AssertIsOnBackgroundThread ();
8383
8484 // The child was disconnected from the WebAuthnManager instance and will send
8585 // no further messages. It is kept alive until we delete it explicitly.
@@ -97,7 +97,7 @@ mozilla::ipc::IPCResult WebAuthnTransactionParent::RecvDestroyMe() {
9797}
9898
9999void WebAuthnTransactionParent::ActorDestroy (ActorDestroyReason aWhy) {
100- AssertIsOnBackgroundThread ();
100+ ::mozilla::ipc:: AssertIsOnBackgroundThread ();
101101
102102 // Called either by Send__delete__() in RecvDestroyMe() above, or when
103103 // the channel disconnects. Ensure the token manager forgets about us.
0 commit comments