chromium/third_party/blink/renderer/modules/credentialmanagement/credential.cc

// Copyright 2014 The Chromium Authors
// 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/credentialmanagement/credential.h"

#include "third_party/blink/renderer/platform/bindings/exception_state.h"
#include "third_party/blink/renderer/platform/weborigin/kurl.h"

namespace blink {

namespace {
constexpr char kDigitalCredentialType[] =;
constexpr char kFederatedCredentialType[] =;
constexpr char kIdentityCredentialType[] =;
constexpr char kOtpCredentialType[] =;
}  // namespace

Credential::~Credential() = default;

Credential::Credential(const String& id, const String& type)
    :{}

KURL Credential::ParseStringAsURLOrThrow(const String& url,
                                         ExceptionState& exception_state) {}

void Credential::Trace(Visitor* visitor) const {}

}  // namespace blink