mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-03-04 15:51:37 +00:00
Bug 1613985 - Use default for equivalent-to-default constructors/destructors in dom/credentialmanagement. r=mccr8
Differential Revision: https://phabricator.services.mozilla.com/D62575 --HG-- extra : moz-landing-system : lando
This commit is contained in:
parent
fe050e8bb2
commit
a6716c2b92
@ -23,7 +23,7 @@ NS_INTERFACE_MAP_END
|
||||
|
||||
Credential::Credential(nsPIDOMWindowInner* aParent) : mParent(aParent) {}
|
||||
|
||||
Credential::~Credential() {}
|
||||
Credential::~Credential() = default;
|
||||
|
||||
JSObject* Credential::WrapObject(JSContext* aCx,
|
||||
JS::Handle<JSObject*> aGivenProto) {
|
||||
|
@ -124,7 +124,7 @@ CredentialsContainer::CredentialsContainer(nsPIDOMWindowInner* aParent)
|
||||
MOZ_ASSERT(aParent);
|
||||
}
|
||||
|
||||
CredentialsContainer::~CredentialsContainer() {}
|
||||
CredentialsContainer::~CredentialsContainer() = default;
|
||||
|
||||
void CredentialsContainer::EnsureWebAuthnManager() {
|
||||
MOZ_ASSERT(NS_IsMainThread());
|
||||
|
Loading…
x
Reference in New Issue
Block a user