summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/modules/credentialmanager/otp_credential.cc
blob: cd021b57ae4737b9185e7c819ef4e405bb7bd3c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// 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& code)
    : Credential(String(), kOtpCredentialType), code_(code) {}

bool OTPCredential::IsOTPCredential() const {
  return true;
}

}  // namespace blink