// Copyright 2022 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_SAFE_BROWSING_TAILORED_SECURITY_DESKTOP_DIALOG_MANAGER_H_ #define CHROME_BROWSER_UI_VIEWS_SAFE_BROWSING_TAILORED_SECURITY_DESKTOP_DIALOG_MANAGER_H_ #include "base/functional/callback.h" class Browser; namespace safe_browsing { // UMA histogram names for the dialogs. const char kDisabledDialogOutcome[] = …; const char kEnabledDialogOutcome[] = …; static constexpr char kTailoredSecurityNoticeDialog[] = …; class TailoredSecurityDesktopDialogManager { … }; } // namespace safe_browsing #endif // CHROME_BROWSER_UI_VIEWS_SAFE_BROWSING_TAILORED_SECURITY_DESKTOP_DIALOG_MANAGER_H_