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

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

Issue 2762001: Wait sending ScreenIsLocked signal until screen lock window is mapped. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: " Created 10 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/chromeos/login/screen_locker.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 9d0a8942c68d3c98aa08346e67e834f9b9f97d2f..ec538b6b3b2b794190f05ad05e23ab111df177dd 100644
--- a/chrome/browser/chromeos/login/screen_locker.h
+++ b/chrome/browser/chromeos/login/screen_locker.h
@@ -65,8 +65,8 @@ class ScreenLocker : public LoginStatusConsumer,
// Exit the chrome, which will sign out the current session.
void Signout();
- // Called when the screen locker is ready.
- void ScreenLockReady();
+ // Called when the all inputs are grabbed.
+ void OnGrabInputs();
// Returns the user to authenticate.
const UserManager::User& user() const {
@@ -99,6 +99,12 @@ class ScreenLocker : public LoginStatusConsumer,
// Sets the authenticator.
void SetAuthenticator(Authenticator* authenticator);
+ // Called when the screen lock is ready.
+ void ScreenLockReady();
+
+ // Event handler for map-event.
+ CHROMEGTK_CALLBACK_1(ScreenLocker, void, OnMap, GdkEvent*);
+
// The screen locker window.
views::WidgetGtk* lock_window_;
@@ -123,6 +129,12 @@ class ScreenLocker : public LoginStatusConsumer,
// An info bubble to display login failure message.
MessageBubble* error_info_;
+ // True if the screen locker's window is mapped.
+ bool mapped_;
+
+ // True if both mouse input and keyboard input are grabbed.
+ bool input_grabbed_;
+
// Reference to the single instance of the screen locker object.
// This is used to make sure there is only one screen locker instance.
static ScreenLocker* screen_locker_;
« no previous file with comments | « no previous file | chrome/browser/chromeos/login/screen_locker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698