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

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

Issue 5013003: chromeos: Add screen locker to window group *after* grab. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/chrome/browser/chromeos/login
Patch Set: show widget immediately but defer grab Created 10 years, 1 month 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/login/screen_locker.cc
diff --git a/chrome/browser/chromeos/login/screen_locker.cc b/chrome/browser/chromeos/login/screen_locker.cc
index a2b72de0a809c1d62a52c1b90da93c9a5e3ea0de..2d8ccd08ea5d0ed9f4e6899a2e923814298f6266 100644
--- a/chrome/browser/chromeos/login/screen_locker.cc
+++ b/chrome/browser/chromeos/login/screen_locker.cc
@@ -272,8 +272,6 @@ class GrabWidget : public views::WidgetGtk {
virtual void Show() {
views::WidgetGtk::Show();
- // Now steal all inputs.
- TryGrabAllInputs();
}
void ClearGrab() {
@@ -568,14 +566,6 @@ void ScreenLocker::Init() {
lock_window_ = lock_window;
lock_window_->Init(NULL, init_bounds);
- // Add the window to its own group so that its grab won't be stolen if
- // gtk_grab_add() gets called on behalf on a non-screen-locker widget (e.g.
- // a modal dialog) -- see http://crosbug.com/8999.
- GtkWindowGroup* window_group = gtk_window_group_new();
- gtk_window_group_add_window(window_group,
- GTK_WINDOW(lock_window_->GetNativeView()));
- g_object_unref(window_group);
-
g_signal_connect(lock_window_->GetNativeView(), "client-event",
G_CALLBACK(OnClientEventThunk), this);
@@ -589,13 +579,19 @@ void ScreenLocker::Init() {
MessageLoopForUI::current()->AddObserver(input_event_observer_.get());
}
- lock_widget_ = new GrabWidget(this);
+ // Hang on to a cast version of the grab widget so we can call its
+ // TryGrabAllInputs() method later. (Nobody else needs to use it, so moving
+ // its declaration to the header instead of keeping it in an anonymous
+ // namespace feels a bit ugly.)
+ GrabWidget* cast_lock_widget = new GrabWidget(this);
+ lock_widget_ = cast_lock_widget;
lock_widget_->MakeTransparent();
lock_widget_->InitWithWidget(lock_window_, gfx::Rect());
if (screen_lock_view_) {
lock_widget_->SetContentsView(
new GrabWidgetRootView(screen_lock_view_));
}
+ lock_widget_->Show();
// Configuring the background url.
std::string url_string =
@@ -616,9 +612,17 @@ void ScreenLocker::Init() {
lock_window_->SetContentsView(background_view_);
lock_window_->Show();
- // Show lock_widget after the lock_window is shown so that
- // we can grab inputs immediately.
- lock_widget_->Show();
+ cast_lock_widget->TryGrabAllInputs();
+
+ // Add the window to its own group so that its grab won't be stolen if
+ // gtk_grab_add() gets called on behalf on a non-screen-locker widget (e.g.
+ // a modal dialog) -- see http://crosbug.com/8999. We intentionally do this
+ // after calling TryGrabAllInputs(), as want to be in the default window group
+ // then so we can break any existing GTK grabs.
+ GtkWindowGroup* window_group = gtk_window_group_new();
+ gtk_window_group_add_window(window_group,
+ GTK_WINDOW(lock_window_->GetNativeView()));
+ g_object_unref(window_group);
// Don't let X draw default background, which was causing flash on
// resume.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698