mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-14 10:43:24 +00:00
14bcecc66f
MozReview-Commit-ID: FCCSL6XWhTf --HG-- rename : dom/u2f/NSSU2FTokenRemote.cpp => dom/webauthn/NSSU2FTokenRemote.cpp rename : dom/u2f/NSSU2FTokenRemote.h => dom/webauthn/NSSU2FTokenRemote.h rename : dom/u2f/ScopedCredential.cpp => dom/webauthn/ScopedCredential.cpp rename : dom/u2f/ScopedCredential.h => dom/webauthn/ScopedCredential.h rename : dom/u2f/ScopedCredentialInfo.cpp => dom/webauthn/ScopedCredentialInfo.cpp rename : dom/u2f/ScopedCredentialInfo.h => dom/webauthn/ScopedCredentialInfo.h rename : dom/u2f/WebAuthnAssertion.cpp => dom/webauthn/WebAuthnAssertion.cpp rename : dom/u2f/WebAuthnAssertion.h => dom/webauthn/WebAuthnAssertion.h rename : dom/u2f/WebAuthnAttestation.cpp => dom/webauthn/WebAuthnAttestation.cpp rename : dom/u2f/WebAuthnAttestation.h => dom/webauthn/WebAuthnAttestation.h rename : dom/u2f/tests/test_webauthn_get_assertion.html => dom/webauthn/tests/test_webauthn_get_assertion.html rename : dom/u2f/tests/test_webauthn_loopback.html => dom/webauthn/tests/test_webauthn_loopback.html rename : dom/u2f/tests/test_webauthn_make_credential.html => dom/webauthn/tests/test_webauthn_make_credential.html rename : dom/u2f/tests/test_webauthn_no_token.html => dom/webauthn/tests/test_webauthn_no_token.html rename : dom/u2f/tests/test_webauthn_sameorigin.html => dom/webauthn/tests/test_webauthn_sameorigin.html
25 lines
618 B
C++
25 lines
618 B
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
/* 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/. */
|
|
|
|
#ifndef NSSU2FTokenRemote_h
|
|
#define NSSU2FTokenRemote_h
|
|
|
|
#include "nsIU2FToken.h"
|
|
|
|
class NSSU2FTokenRemote : public nsIU2FToken
|
|
{
|
|
public:
|
|
NS_DECL_THREADSAFE_ISUPPORTS
|
|
NS_DECL_NSIU2FTOKEN
|
|
|
|
NSSU2FTokenRemote();
|
|
|
|
private:
|
|
virtual ~NSSU2FTokenRemote();
|
|
};
|
|
|
|
#endif // NSSU2FTokenRemote_h
|