chromium/chrome/browser/ui/views/webauthn/authenticator_gpm_pin_sheet_view.cc

// Copyright 2024 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/views/webauthn/authenticator_gpm_pin_sheet_view.h"

#include <memory>
#include <string>
#include <utility>

#include "chrome/browser/ui/views/webauthn/authenticator_common_views.h"
#include "chrome/browser/ui/views/webauthn/authenticator_gpm_pin_view.h"
#include "chrome/browser/ui/views/webauthn/authenticator_request_sheet_view.h"
#include "ui/views/view.h"

AuthenticatorGpmPinSheetView::AuthenticatorGpmPinSheetView(
    std::unique_ptr<AuthenticatorGpmPinSheetModel> sheet_model)
    :{}

AuthenticatorGpmPinSheetView::~AuthenticatorGpmPinSheetView() = default;

AuthenticatorGpmPinSheetModel*
AuthenticatorGpmPinSheetView::gpm_pin_sheet_model() {}

std::unique_ptr<views::View>
AuthenticatorGpmPinSheetView::BuildStepSpecificHeader() {}

std::pair<std::unique_ptr<views::View>, AuthenticatorGpmPinSheetView::AutoFocus>
AuthenticatorGpmPinSheetView::BuildStepSpecificContent() {}

int AuthenticatorGpmPinSheetView::GetSpacingBetweenTitleAndDescription() {}

void AuthenticatorGpmPinSheetView::OnPinChanged(std::u16string pin) {}

void AuthenticatorGpmPinSheetView::PinCharTyped(bool is_digit) {}

std::u16string AuthenticatorGpmPinSheetView::GetPinAccessibleName() {}