Chromium Code Reviews| 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: | |
|
Andrew T Wilson (Slow)
2012/07/10 17:37:43
Style guide requires a virtual destructor for inte
Munjal (Google)
2012/07/10 18:02:58
Done.
| |
| 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* observer); | |
| 50 void RemoveObserver(Observer* observer); | |
| 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. |
| 42 void SetLoginUI(LoginUI* ui); | 54 void SetLoginUI(LoginUI* ui); |
| 43 | 55 |
| 44 // Called when login UI is closed. If the passed UI is the current login UI, | 56 // Called when login UI is closed. If the passed UI is the current login UI, |
| 45 // sets current_login_ui() to null. | 57 // sets current_login_ui() to null. |
| 46 void LoginUIClosed(LoginUI* ui); | 58 void LoginUIClosed(LoginUI* ui); |
| 47 | 59 |
| 48 // Brings the login UI to the foreground, or if there is no login UI, | 60 // 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. | 61 // navigates to the login UI page in the given browser. |
| 50 // Virtual for mocking purposes. | 62 // Virtual for mocking purposes. |
| 51 virtual void ShowLoginUI(Browser* browser); | 63 virtual void ShowLoginUI(Browser* browser); |
| 52 | 64 |
| 53 private: | 65 private: |
| 54 // Weak pointer to the currently active login UI, or null if none. | 66 // Weak pointer to the currently active login UI, or null if none. |
| 55 LoginUI* ui_; | 67 LoginUI* ui_; |
| 56 | 68 |
| 69 ObserverList<Observer> observer_list_; | |
| 70 | |
| 57 DISALLOW_COPY_AND_ASSIGN(LoginUIService); | 71 DISALLOW_COPY_AND_ASSIGN(LoginUIService); |
| 58 }; | 72 }; |
| 59 | 73 |
| 60 #endif // CHROME_BROWSER_UI_WEBUI_SIGNIN_LOGIN_UI_SERVICE_H_ | 74 #endif // CHROME_BROWSER_UI_WEBUI_SIGNIN_LOGIN_UI_SERVICE_H_ |
| OLD | NEW |