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

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

Issue 1487283005: Implement the new Sync Confirmation dialog on Linux and Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Adress feedback Created 5 years 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.cc
diff --git a/chrome/browser/ui/webui/signin/login_ui_service.cc b/chrome/browser/ui/webui/signin/login_ui_service.cc
index cc1681d66027c04f8863d29436ae2f59706e142c..4b495e0940178cae1f7ec53766a5b02634c1e2f2 100644
--- a/chrome/browser/ui/webui/signin/login_ui_service.cc
+++ b/chrome/browser/ui/webui/signin/login_ui_service.cc
@@ -49,11 +49,12 @@ void LoginUIService::LoginUIClosed(LoginUI* ui) {
FOR_EACH_OBSERVER(Observer, observer_list_, OnLoginUIClosed(ui));
}
-void LoginUIService::SyncConfirmationUIClosed(bool configure_sync_first) {
+void LoginUIService::SyncConfirmationUIClosed(
+ SyncConfirmationUIClosedResults results) {
FOR_EACH_OBSERVER(
Observer,
observer_list_,
- OnSyncConfirmationUIClosed(configure_sync_first));
+ OnSyncConfirmationUIClosed(results));
}
void LoginUIService::UntrustedLoginUIShown() {

Powered by Google App Engine
This is Rietveld 408576698