Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(258)

Unified Diff: chrome/browser/ui/browser_dialogs.h

Issue 2795133002: Chrome Cleaner UI: Add a dialog class for the new UI (Closed)
Patch Set: No longer subclassing View for the details section Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/browser_dialogs.h
diff --git a/chrome/browser/ui/browser_dialogs.h b/chrome/browser/ui/browser_dialogs.h
index 74351a4f6cce1ef30feb9d3135ffc938bf6949c9..28755e2794279acca202cac740c31d99164bc3a4 100644
--- a/chrome/browser/ui/browser_dialogs.h
+++ b/chrome/browser/ui/browser_dialogs.h
@@ -55,6 +55,10 @@ class PaymentRequest;
class PaymentRequestDialog;
}
+namespace safe_browsing {
+class SRTPromptController;
+}
+
namespace security_state {
struct SecurityInfo;
} // namespace security_state
@@ -186,6 +190,16 @@ class ContentSettingBubbleViewsBridge {
#endif // TOOLKIT_VIEWS
+#if defined(OS_WIN)
+
+// Shows the Chrome Cleanup dialog asking the user if they want to clean their
+// system from unwanted software. This is called when unwanted software has been
+// detected on the system.
+void ShowSRTPrompt(Browser* browser,
+ safe_browsing::SRTPromptController* controller);
+
+#endif // OS_WIN
+
} // namespace chrome
#if defined(OS_CHROMEOS)

Powered by Google App Engine
This is Rietveld 408576698