chromium/chrome/browser/ui/passwords/bubble_controllers/shared_passwords_notifications_bubble_controller.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/passwords/bubble_controllers/shared_passwords_notifications_bubble_controller.h"

#include "chrome/browser/password_manager/account_password_store_factory.h"
#include "chrome/browser/password_manager/profile_password_store_factory.h"
#include "chrome/browser/ui/passwords/passwords_model_delegate.h"
#include "chrome/grit/generated_resources.h"
#include "components/password_manager/core/browser/manage_passwords_referrer.h"
#include "components/password_manager/core/browser/password_form.h"
#include "components/password_manager/core/browser/password_manager_metrics_util.h"
#include "components/url_formatter/elide_url.h"
#include "ui/base/l10n/l10n_util.h"

PasswordForm;
SharedPasswordsNotificationBubbleInteractions;

SharedPasswordsNotificationBubbleController::
    SharedPasswordsNotificationBubbleController(
        base::WeakPtr<PasswordsModelDelegate> delegate)
    :{}

SharedPasswordsNotificationBubbleController::
    ~SharedPasswordsNotificationBubbleController() {}

std::u16string
SharedPasswordsNotificationBubbleController::GetNotificationBody() {}

gfx::Range SharedPasswordsNotificationBubbleController::GetSenderNameRange()
    const {}

void SharedPasswordsNotificationBubbleController::OnAcknowledgeClicked() {}

void SharedPasswordsNotificationBubbleController::OnManagePasswordsClicked() {}

void SharedPasswordsNotificationBubbleController::OnCloseBubbleClicked() {}

std::u16string SharedPasswordsNotificationBubbleController::GetTitle() const {}

void SharedPasswordsNotificationBubbleController::ReportInteractions() {}

std::vector<PasswordForm*> SharedPasswordsNotificationBubbleController::
    GetSharedCredentialsRequiringNotification() const {}

void SharedPasswordsNotificationBubbleController::
    MarkSharedCredentialAsNotifiedInPasswordStore() {}