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

Unified Diff: chrome/browser/ui/webui/signin/login_ui_service.h

Issue 1806353002: Enhanced Sync Confirmation modal (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed roger's comments Created 4 years, 9 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/webui/signin/login_ui_service.h
diff --git a/chrome/browser/ui/webui/signin/login_ui_service.h b/chrome/browser/ui/webui/signin/login_ui_service.h
index ce3ffead914a26b9fa92f857195ef44f7c4c5216..f6196cb51a048e321ee06ae4da2cbd40e3f21ae6 100644
--- a/chrome/browser/ui/webui/signin/login_ui_service.h
+++ b/chrome/browser/ui/webui/signin/login_ui_service.h
@@ -56,7 +56,8 @@ class LoginUIService : public KeyedService {
// Called when the sync confirmation UI is closed. |results| indicates the
// option chosen by the user in the confirmation UI.
virtual void OnSyncConfirmationUIClosed(
- SyncConfirmationUIClosedResults results) {}
+ SyncConfirmationUIClosedResults results,
+ bool open_activity_controls_url) {}
// Called when a confirmation UI for untrusted signin is shown.
virtual void OnUntrustedLoginUIShown() {}
@@ -86,7 +87,8 @@ class LoginUIService : public KeyedService {
void LoginUIClosed(LoginUI* ui);
// Called when the sync settings confirmation UI is closed.
- void SyncConfirmationUIClosed(SyncConfirmationUIClosedResults results);
+ void SyncConfirmationUIClosed(SyncConfirmationUIClosedResults results,
+ bool open_activity_controls_url);
// Called when a confirmation UI for untrusted signin is shown.
void UntrustedLoginUIShown();

Powered by Google App Engine
This is Rietveld 408576698