// 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. #ifndef CHROME_BROWSER_UI_VIEWS_PASSWORDS_MANAGE_PASSWORDS_LIST_VIEW_H_ #define CHROME_BROWSER_UI_VIEWS_PASSWORDS_MANAGE_PASSWORDS_LIST_VIEW_H_ #include "base/functional/callback_forward.h" #include "components/password_manager/core/browser/password_form.h" #include "ui/base/interaction/element_identifier.h" #include "ui/base/models/image_model.h" #include "ui/views/layout/box_layout_view.h" // A view that displays a list of credentials in a list view, together with an // entry to navigate to the password manager. Used in the ManagePasswordsView. class ManagePasswordsListView : public views::BoxLayoutView { … }; #endif // CHROME_BROWSER_UI_VIEWS_PASSWORDS_MANAGE_PASSWORDS_LIST_VIEW_H_