summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/modules/credentialmanager/otp_credential.cc
blob: 8b7ef3d51ebac7d07ca306483ded63d85a2bab2a (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 i {
constexpr static char kOtpCredentialType[] = "otp";
}

OTPCredential::OTPCredential(const String& code)
    : Credential(String(), i::kOtpCredentialType), code_(code) {}

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

}  // namespace blink