OLD | NEW |
---|---|
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 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
10 #include "base/observer_list.h" | |
10 #include "chrome/browser/profiles/profile_keyed_service.h" | 11 #include "chrome/browser/profiles/profile_keyed_service.h" |
11 | 12 |
12 class Browser; | 13 class Browser; |
13 | 14 |
14 // The LoginUIService helps track per-profile information for the login UI - | 15 // The LoginUIService helps track per-profile information for the login UI - |
15 // for example, whether there is login UI currently on-screen. | 16 // for example, whether there is login UI currently on-screen. |
16 class LoginUIService : public ProfileKeyedService { | 17 class LoginUIService : public ProfileKeyedService { |
17 public: | 18 public: |
18 // Various UI components implement this API to allow LoginUIService to | 19 // Various UI components implement this API to allow LoginUIService to |
19 // manipulate their associated login UI. | 20 // manipulate their associated login UI. |
20 class LoginUI { | 21 class LoginUI { |
21 public: | 22 public: |
22 // Invoked when the login UI should be brought to the foreground. | 23 // Invoked when the login UI should be brought to the foreground. |
23 virtual void FocusUI() = 0; | 24 virtual void FocusUI() = 0; |
24 | 25 |
25 // 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 |
26 // user takes an action that should display new login UI. | 27 // user takes an action that should display new login UI. |
27 virtual void CloseUI() = 0; | 28 virtual void CloseUI() = 0; |
28 protected: | 29 protected: |
29 virtual ~LoginUI() {} | 30 virtual ~LoginUI() {} |
30 }; | 31 }; |
31 | 32 |
33 class Observer { | |
34 public: | |
35 // Called when a new login UI is shown. | |
36 virtual void OnLoginUIShown(LoginUI* ui) = 0; | |
37 // Called when a login UI is closed. | |
38 virtual void OnLoginUIClosed(LoginUI* ui) = 0; | |
39 }; | |
40 | |
32 LoginUIService(); | 41 LoginUIService(); |
33 virtual ~LoginUIService(); | 42 virtual ~LoginUIService(); |
34 | 43 |
35 // Gets the currently active login UI, or null if no login UI is active. | 44 // Gets the currently active login UI, or null if no login UI is active. |
36 LoginUI* current_login_ui() const { | 45 LoginUI* current_login_ui() const { |
37 return ui_; | 46 return ui_; |
38 } | 47 } |
39 | 48 |
49 void AddObserver(Observer* o); | |
jam
2012/07/10 16:13:07
nit: Observer* observer
Munjal (Google)
2012/07/10 16:46:15
Done.
| |
50 void RemoveObserver(Observer* o); | |
51 | |
40 // Sets the currently active login UI. It is illegal to call this if there is | 52 // Sets the currently active login UI. It is illegal to call this if there is |
41 // already login UI visible. | 53 // already login UI visible. |
54 // Fires chrome::NOTIFICATION_LOGIN_UI_CHANGED. | |
jam
2012/07/10 16:13:07
nit: remove this comment and below
Munjal (Google)
2012/07/10 16:46:15
Done.
| |
42 void SetLoginUI(LoginUI* ui); | 55 void SetLoginUI(LoginUI* ui); |
43 | 56 |
44 // Called when login UI is closed. If the passed UI is the current login UI, | 57 // Called when login UI is closed. If the passed UI is the current login UI, |
45 // sets current_login_ui() to null. | 58 // sets current_login_ui() to null. |
59 // Fires chrome::NOTIFICATION_LOGIN_UI_CHANGED. | |
46 void LoginUIClosed(LoginUI* ui); | 60 void LoginUIClosed(LoginUI* ui); |
47 | 61 |
48 // Brings the login UI to the foreground, or if there is no login UI, | 62 // Brings the login UI to the foreground, or if there is no login UI, |
49 // navigates to the login UI page in the given browser. | 63 // navigates to the login UI page in the given browser. |
50 // Virtual for mocking purposes. | 64 // Virtual for mocking purposes. |
51 virtual void ShowLoginUI(Browser* browser); | 65 virtual void ShowLoginUI(Browser* browser); |
52 | 66 |
53 private: | 67 private: |
54 // Weak pointer to the currently active login UI, or null if none. | 68 // Weak pointer to the currently active login UI, or null if none. |
55 LoginUI* ui_; | 69 LoginUI* ui_; |
56 | 70 |
71 ObserverList<Observer> observer_list_; | |
72 | |
57 DISALLOW_COPY_AND_ASSIGN(LoginUIService); | 73 DISALLOW_COPY_AND_ASSIGN(LoginUIService); |
58 }; | 74 }; |
59 | 75 |
60 #endif // CHROME_BROWSER_UI_WEBUI_SIGNIN_LOGIN_UI_SERVICE_H_ | 76 #endif // CHROME_BROWSER_UI_WEBUI_SIGNIN_LOGIN_UI_SERVICE_H_ |
OLD | NEW |