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

Side by Side Diff: chrome/browser/ui/webui/signin/sync_confirmation_handler.h

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: Address feedback Created 4 years, 11 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_UI_WEBUI_SIGNIN_SYNC_CONFIRMATION_HANDLER_H_
6 #define CHROME_BROWSER_UI_WEBUI_SIGNIN_SYNC_CONFIRMATION_HANDLER_H_
7
8 #include <string>
9
10 #include "base/macros.h"
11 #include "chrome/browser/ui/webui/signin/login_ui_service.h"
12 #include "components/signin/core/browser/account_tracker_service.h"
13 #include "content/public/browser/web_ui_message_handler.h"
14
15 class Browser;
16
17 namespace base {
18 class ListValue;
19 }
20
21 class SyncConfirmationHandler : public content::WebUIMessageHandler,
22 public AccountTrackerService::Observer {
23 public:
24 SyncConfirmationHandler();
25 ~SyncConfirmationHandler() override;
26
27 // content::WebUIMessageHandler:
28 void RegisterMessages() override;
29
30 // AccountTrackerService::Observer:
31 void OnAccountUpdated(const AccountInfo& info) override;
32
33 private:
34 // Handles "confirm" message from the page. No arguments.
35 // This message is sent when the user confirms that they want complete sign in
36 // with default sync settings.
37 void HandleConfirm(const base::ListValue* args);
38
39 // Handles "undo" message from the page. No arguments.
40 // This message is sent when the user clicks "undo" on the sync confirmation
41 // dialog, which aborts signin and prevents sync from starting.
42 void HandleUndo(const base::ListValue* args);
43
44 // Handles "initialized" message from the page. No arguments.
45 // This message is sent when the sync confirmation dialog is finished being
46 // initialized.
47 void HandleInitialized(const base::ListValue* args);
48
49 // Handles "goToSettings" message from the page. No arguments.
50 // This message is sent when the user clicks on the "Settings" link in the
51 // sync confirmation dialog, which completes sign in but takes the user to the
52 // sync settings page for configuration before starting sync.
53 void HandleGoToSettings(const base::ListValue* args);
54
55 // Sets the profile picture shown in the dialog to the image at |url|.
56 void SetUserImageURL(const std::string& url);
57
58 private:
59 Browser* GetDesktopBrowser();
60 void CloseModalSigninWindow(
61 LoginUIService::SyncConfirmationUIClosedResults results);
62
63 DISALLOW_COPY_AND_ASSIGN(SyncConfirmationHandler);
64 };
65
66 #endif // CHROME_BROWSER_UI_WEBUI_SIGNIN_SYNC_CONFIRMATION_HANDLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698