1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
|
// Copyright 2019 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_PASSWORD_MANAGER_ANDROID_CREDENTIAL_LEAK_CONTROLLER_ANDROID_H_
#define CHROME_BROWSER_PASSWORD_MANAGER_ANDROID_CREDENTIAL_LEAK_CONTROLLER_ANDROID_H_
#include <memory>
#include <string>
#include "base/memory/raw_ptr.h"
#include "chrome/browser/password_manager/android/password_checkup_launcher_helper.h"
#include "components/password_manager/core/browser/leak_detection_dialog_utils.h"
#include "url/gurl.h"
class Profile;
namespace ui {
class WindowAndroid;
}
class CredentialLeakDialogViewAndroid;
// Class which manages the dialog displayed when a credential leak was
// detected. It is self-owned and it owns the dialog view.
class CredentialLeakControllerAndroid {
public:
CredentialLeakControllerAndroid(
password_manager::CredentialLeakType leak_type,
const GURL& origin,
const std::u16string& username,
Profile* profile,
ui::WindowAndroid* window_android,
std::unique_ptr<PasswordCheckupLauncherHelper> checkup_launcher,
std::unique_ptr<password_manager::metrics_util::LeakDialogMetricsRecorder>
metrics_recorder,
std::string account_email);
CredentialLeakControllerAndroid(const CredentialLeakControllerAndroid&) =
delete;
CredentialLeakControllerAndroid& operator=(
const CredentialLeakControllerAndroid&) = delete;
~CredentialLeakControllerAndroid();
// Called when a leaked credential was detected.
void ShowDialog();
// Called from the UI when the "Close" button was pressed.
// Will destroy the controller.
void OnCancelDialog();
// Called from the UI when the okay or password check button was pressed.
// Will destroy the controller.
void OnAcceptDialog();
// Called from the UI when the dialog was dismissed by other means (e.g. back
// button).
// Will destroy the controller.
void OnCloseDialog();
// The label of the accept button. Varies by leak type.
std::u16string GetAcceptButtonLabel() const;
// The label of the cancel button. Varies by leak type.
std::u16string GetCancelButtonLabel() const;
// Text explaining the leak details. Varies by leak type.
std::u16string GetDescription() const;
// The title of the dialog displaying the leak warning.
std::u16string GetTitle() const;
// Checks whether the cancel button should be shown.
bool ShouldShowCancelButton() const;
private:
// Used to customize the UI.
const password_manager::CredentialLeakType leak_type_;
const GURL origin_;
const std::u16string username_;
const raw_ptr<Profile> profile_;
const raw_ptr<ui::WindowAndroid> window_android_;
std::unique_ptr<CredentialLeakDialogViewAndroid> dialog_view_;
std::unique_ptr<password_manager::LeakDialogTraits> leak_dialog_traits_;
// Helper through which the dialog can invoke Java code to launch
// the password checkup.
std::unique_ptr<PasswordCheckupLauncherHelper> checkup_launcher_;
// Metrics recorder for leak dialog related UMA and UKM logging.
std::unique_ptr<password_manager::metrics_util::LeakDialogMetricsRecorder>
metrics_recorder_;
// Email of the account syncing passwords. Empty string if the user isn't
// syncing passwords.
std::string account_email_;
};
#endif // CHROME_BROWSER_PASSWORD_MANAGER_ANDROID_CREDENTIAL_LEAK_CONTROLLER_ANDROID_H_
|