// 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_PASSWORDS_BUBBLE_CONTROLLERS_SHARED_PASSWORDS_NOTIFICATIONS_BUBBLE_CONTROLLER_H_ #define CHROME_BROWSER_UI_PASSWORDS_BUBBLE_CONTROLLERS_SHARED_PASSWORDS_NOTIFICATIONS_BUBBLE_CONTROLLER_H_ #include "chrome/browser/ui/passwords/bubble_controllers/password_bubble_controller_base.h" #include "ui/gfx/range/range.h" namespace password_manager { struct PasswordForm; } // This controller manages the bubble notifying the user that some of the stored // passwords have been received via password sharing feature from other users. class SharedPasswordsNotificationBubbleController : public PasswordBubbleControllerBase { … }; #endif // CHROME_BROWSER_UI_PASSWORDS_BUBBLE_CONTROLLERS_SHARED_PASSWORDS_NOTIFICATIONS_BUBBLE_CONTROLLER_H_