chromium/chrome/browser/ui/autofill/payments/webauthn_dialog_model.cc

// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chrome/browser/ui/autofill/payments/webauthn_dialog_model.h"

#include "base/observer_list.h"
#include "chrome/app/vector_icons/vector_icons.h"
#include "chrome/browser/ui/autofill/payments/webauthn_dialog_model_observer.h"
#include "chrome/browser/ui/autofill/payments/webauthn_dialog_state.h"
#include "components/strings/grit/components_strings.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/gfx/paint_vector_icon.h"

namespace autofill {

WebauthnDialogModel::WebauthnDialogModel(WebauthnDialogState dialog_state)
    :{}

WebauthnDialogModel::~WebauthnDialogModel() = default;

void WebauthnDialogModel::SetDialogState(WebauthnDialogState state) {}

void WebauthnDialogModel::AddObserver(WebauthnDialogModelObserver* observer) {}

void WebauthnDialogModel::RemoveObserver(
    WebauthnDialogModelObserver* observer) {}

bool WebauthnDialogModel::IsActivityIndicatorVisible() const {}

bool WebauthnDialogModel::IsCancelButtonVisible() const {}

std::u16string WebauthnDialogModel::GetCancelButtonLabel() const {}

bool WebauthnDialogModel::IsAcceptButtonVisible() const {}

bool WebauthnDialogModel::IsAcceptButtonEnabled() const {}

std::u16string WebauthnDialogModel::GetAcceptButtonLabel() const {}

std::u16string WebauthnDialogModel::GetStepTitle() const {}

std::u16string WebauthnDialogModel::GetStepDescription() const {}

void WebauthnDialogModel::SetIllustrationsFromState() {}

}  // namespace autofill