blob: 5b448fdfcbd9ce75939d19577d0e45532f00588b [file] [log] [blame]
// Copyright 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "third_party/blink/renderer/modules/credentialmanager/otp_credential.h"
#include "third_party/blink/renderer/core/execution_context/execution_context.h"
#include "third_party/blink/renderer/platform/bindings/exception_state.h"
namespace blink {
namespace {
constexpr char kOtpCredentialType[] = "otp";
}
OtpCredential::OtpCredential(const String& id)
: Credential(id, kOtpCredentialType) {}
bool OtpCredential::IsOtpCredential() const {
return true;
}
} // namespace blink