Index: chrome/browser/chromeos/login/screen_locker.h |
diff --git a/chrome/browser/chromeos/login/screen_locker.h b/chrome/browser/chromeos/login/screen_locker.h |
index 853c40f505a70cb2f22c94771c3d7995350eeae7..71b5a74b5038fd85fce2d6e7bf47bea3d6c4d25e 100644 |
--- a/chrome/browser/chromeos/login/screen_locker.h |
+++ b/chrome/browser/chromeos/login/screen_locker.h |
@@ -47,6 +47,11 @@ class ScreenLocker : public LoginStatusConsumer, |
public: |
explicit ScreenLocker(const UserManager::User& user); |
+ // Returns the default instance if it has been created. |
+ static ScreenLocker* default_screen_locker() { |
+ return screen_locker_; |
+ } |
+ |
// Initialize and show the screen locker. |
void Init(); |
@@ -76,6 +81,11 @@ class ScreenLocker : public LoginStatusConsumer, |
// Exit the chrome, which will sign out the current session. |
void Signout(); |
+ // Disables all UI needed and shows error bubble with |message|. |
+ // If |sign_out_only| is true than all other input except "Sign Out" |
whywhat
2010/11/25 15:40:37
than -> then
Nikita (slow)
2010/11/29 11:20:25
Done.
|
+ // button is blocked. |
+ void ShowErrorMessage(const std::wstring& message, bool sign_out_only); |
+ |
// Called when the all inputs are grabbed. |
void OnGrabInputs(); |
@@ -117,6 +127,11 @@ class ScreenLocker : public LoginStatusConsumer, |
// Called when the window manager is ready to handle locked state. |
void OnWindowManagerReady(); |
+ // Shows error_info_ bubble with the |message| and |arrow_location| specified. |
+ // Assumes that UI controls were locked before that. |
+ void ShowErrorBubble(const std::wstring& message, |
+ BubbleBorder::ArrowLocation arrow_location); |
+ |
// Stops screen saver. |
void StopScreenSaver(); |