chromium/chrome/browser/ui/views/download/bubble/download_bubble_password_prompt_view.cc

// Copyright 2023 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/download/bubble/download_bubble_password_prompt_view.h"

#include "chrome/browser/ui/views/chrome_layout_provider.h"
#include "chrome/browser/ui/views/chrome_typography.h"
#include "chrome/grit/generated_resources.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/base/metadata/metadata_impl_macros.h"
#include "ui/views/accessibility/view_accessibility.h"
#include "ui/views/controls/label.h"
#include "ui/views/controls/textfield/textfield.h"
#include "ui/views/view_class_properties.h"

DownloadBubblePasswordPromptView::DownloadBubblePasswordPromptView() {}

DownloadBubblePasswordPromptView::~DownloadBubblePasswordPromptView() = default;

void DownloadBubblePasswordPromptView::SetState(State state) {}

const std::u16string& DownloadBubblePasswordPromptView::GetText() const {}

bool DownloadBubblePasswordPromptView::IsError(State state) const {}

std::u16string DownloadBubblePasswordPromptView::GetErrorMessage(
    State state) const {}

std::u16string DownloadBubblePasswordPromptView::GetAccessibleName(
    State state) const {}

BEGIN_METADATA()