chromium/chrome/browser/ui/safety_hub/password_status_check_result.h

// 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_SAFETY_HUB_PASSWORD_STATUS_CHECK_RESULT_H_
#define CHROME_BROWSER_UI_SAFETY_HUB_PASSWORD_STATUS_CHECK_RESULT_H_

#include <set>
#include <string>

#include "chrome/browser/ui/safety_hub/safety_hub_service.h"

struct PasswordPair {};

// The result of the periodic password status checks for weak, unused and
// compromised passwords. This result will be used to show a notifcication on
// the three dot menu. Whenever any compromised passwords is detected, the
// origin should be added here.
class PasswordStatusCheckResult : public SafetyHubService::Result {};

#endif  // CHROME_BROWSER_UI_SAFETY_HUB_PASSWORD_STATUS_CHECK_RESULT_H_