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

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

Issue 435423005: Implement the inline signin confirmation bubble and mirror upgrade tutorial (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: nits fixed Created 6 years, 4 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_UI_WEBUI_SIGNIN_LOGIN_UI_SERVICE_H_ 5 #ifndef CHROME_BROWSER_UI_WEBUI_SIGNIN_LOGIN_UI_SERVICE_H_
6 #define CHROME_BROWSER_UI_WEBUI_SIGNIN_LOGIN_UI_SERVICE_H_ 6 #define CHROME_BROWSER_UI_WEBUI_SIGNIN_LOGIN_UI_SERVICE_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/observer_list.h" 9 #include "base/observer_list.h"
10 #include "components/keyed_service/core/keyed_service.h" 10 #include "components/keyed_service/core/keyed_service.h"
11 11
12 class Browser; 12 class Browser;
13 class Profile; 13 class Profile;
14 14
15 // The LoginUIService helps track per-profile information for the login UI - 15 // The LoginUIService helps track per-profile information for the login related
16 // for example, whether there is login UI currently on-screen. 16 // UIs - for example, whether there is login UI currently on-screen.
17 class LoginUIService : public KeyedService { 17 class LoginUIService : public KeyedService {
18 public: 18 public:
19 // Various UI components implement this API to allow LoginUIService to 19 // Various UI components implement this API to allow LoginUIService to
20 // manipulate their associated login UI. 20 // manipulate their associated login UI.
21 class LoginUI { 21 class LoginUI {
22 public: 22 public:
23 // Invoked when the login UI should be brought to the foreground. 23 // Invoked when the login UI should be brought to the foreground.
24 virtual void FocusUI() = 0; 24 virtual void FocusUI() = 0;
25 25
26 // Invoked when the login UI should be closed. This can be invoked if the 26 // Invoked when the login UI should be closed. This can be invoked if the
27 // user takes an action that should display new login UI. 27 // user takes an action that should display new login UI.
28 virtual void CloseUI() = 0; 28 virtual void CloseUI() = 0;
29 protected: 29 protected:
30 virtual ~LoginUI() {} 30 virtual ~LoginUI() {}
31 }; 31 };
32 32
33 // Interface for obervers of LoginUIService. 33 // Interface for obervers of LoginUIService.
34 class Observer { 34 class Observer {
35 public: 35 public:
36 // Called when a new login UI is shown. 36 // Called when a new login UI is shown.
37 // |ui| The login UI that was just shown. Will never be null. 37 // |ui| The login UI that was just shown. Will never be null.
38 virtual void OnLoginUIShown(LoginUI* ui) = 0; 38 virtual void OnLoginUIShown(LoginUI* ui) {}
39 39
40 // Called when a login UI is closed. 40 // Called when a login UI is closed.
41 // |ui| The login UI that was just closed; will never be null. 41 // |ui| The login UI that was just closed; will never be null.
42 virtual void OnLoginUIClosed(LoginUI* ui) = 0; 42 virtual void OnLoginUIClosed(LoginUI* ui) {}
43
44 // Called when the sync confirmation UI is closed. |configure_sync_first|
45 // is true if the user has requested to configure the sync settings before
46 // sync starts.
47 virtual void OnSyncConfirmationUIClosed(bool configure_sync_first) {}
43 48
44 protected: 49 protected:
45 virtual ~Observer() {} 50 virtual ~Observer() {}
46 }; 51 };
47 52
48 explicit LoginUIService(Profile* profile); 53 explicit LoginUIService(Profile* profile);
49 virtual ~LoginUIService(); 54 virtual ~LoginUIService();
50 55
51 // Gets the currently active login UI, or null if no login UI is active. 56 // Gets the currently active login UI, or null if no login UI is active.
52 LoginUI* current_login_ui() const { 57 LoginUI* current_login_ui() const {
53 return ui_; 58 return ui_;
54 } 59 }
55 60
56 // |observer| The observer to add or remove; cannot be NULL. 61 // |observer| The observer to add or remove; cannot be NULL.
57 void AddObserver(Observer* observer); 62 void AddObserver(Observer* observer);
58 void RemoveObserver(Observer* observer); 63 void RemoveObserver(Observer* observer);
59 64
60 // Sets the currently active login UI. It is illegal to call this if there is 65 // Sets the currently active login UI. It is illegal to call this if there is
61 // already login UI visible. 66 // already login UI visible.
62 void SetLoginUI(LoginUI* ui); 67 void SetLoginUI(LoginUI* ui);
63 68
64 // Called when login UI is closed. If the passed UI is the current login UI, 69 // Called when login UI is closed. If the passed UI is the current login UI,
65 // sets current_login_ui() to null. 70 // sets current_login_ui() to null.
66 void LoginUIClosed(LoginUI* ui); 71 void LoginUIClosed(LoginUI* ui);
67 72
73 // Called when the sync settings confirmation UI is closed.
74 void SyncConfirmationUIClosed(bool configure_sync_first);
75
68 // Delegate to an existing login dialog if one exists. 76 // Delegate to an existing login dialog if one exists.
69 // If not, we make a new popup dialog window, and set it to 77 // If not, we make a new popup dialog window, and set it to
70 // chrome://signin to ask the user to sign in to chrome. 78 // chrome://signin to ask the user to sign in to chrome.
71 void ShowLoginPopup(); 79 void ShowLoginPopup();
72 80
73 private: 81 private:
74 // Weak pointer to the currently active login UI, or null if none. 82 // Weak pointer to the currently active login UI, or null if none.
75 LoginUI* ui_; 83 LoginUI* ui_;
76 Profile* profile_; 84 Profile* profile_;
77 85
78 // List of observers. 86 // List of observers.
79 ObserverList<Observer> observer_list_; 87 ObserverList<Observer> observer_list_;
80 88
81 DISALLOW_COPY_AND_ASSIGN(LoginUIService); 89 DISALLOW_COPY_AND_ASSIGN(LoginUIService);
82 }; 90 };
83 91
84 #endif // CHROME_BROWSER_UI_WEBUI_SIGNIN_LOGIN_UI_SERVICE_H_ 92 #endif // CHROME_BROWSER_UI_WEBUI_SIGNIN_LOGIN_UI_SERVICE_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/webui/signin/inline_login_handler_impl.cc ('k') | chrome/browser/ui/webui/signin/login_ui_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698