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

Unified Diff: chrome/browser/chromeos/login/screen_locker.h

Issue 3583013: [cros] Add blocking UI on offline: OK, online auth: fail case. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: address cmasone, oshima comments Created 10 years 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 side-by-side diff with in-line comments
Download patch
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..27e14045b260d51f62fbe2da7bd5541941ce2fdd 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 then all other input except "Sign Out"
+ // 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();
« no previous file with comments | « chrome/browser/chromeos/login/password_changed_view.cc ('k') | chrome/browser/chromeos/login/screen_locker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698