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

Side by Side Diff: chrome/browser/chromeos/login/user_controller.cc

Issue 5966008: Show hand cursor only on small user pods and labels (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: use_small_shape is a constructor argument Created 9 years, 11 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 #include "chrome/browser/chromeos/login/user_controller.h" 5 #include "chrome/browser/chromeos/login/user_controller.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <vector> 8 #include <vector>
9 9
10 #include "app/l10n_util.h" 10 #include "app/l10n_util.h"
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 class ClickNotifyingWidget : public views::WidgetGtk { 62 class ClickNotifyingWidget : public views::WidgetGtk {
63 public: 63 public:
64 ClickNotifyingWidget(views::WidgetGtk::Type type, 64 ClickNotifyingWidget(views::WidgetGtk::Type type,
65 UserController* controller) 65 UserController* controller)
66 : WidgetGtk(type), 66 : WidgetGtk(type),
67 controller_(controller) { 67 controller_(controller) {
68 } 68 }
69 69
70 private: 70 private:
71 gboolean OnButtonPress(GtkWidget* widget, GdkEventButton* event) { 71 gboolean OnButtonPress(GtkWidget* widget, GdkEventButton* event) {
72 if (!controller_->is_user_selected()) 72 if (!controller_->IsUserSelected())
73 controller_->SelectUserRelative(0); 73 controller_->SelectUserRelative(0);
74 74
75 return views::WidgetGtk::OnButtonPress(widget, event); 75 return views::WidgetGtk::OnButtonPress(widget, event);
76 } 76 }
77 77
78 UserController* controller_; 78 UserController* controller_;
79 79
80 DISALLOW_COPY_AND_ASSIGN(ClickNotifyingWidget); 80 DISALLOW_COPY_AND_ASSIGN(ClickNotifyingWidget);
81 }; 81 };
82 82
(...skipping 426 matching lines...) Expand 10 before | Expand all | Expand 10 after
509 return; 509 return;
510 } 510 }
511 delegate_->RemoveUser(this); 511 delegate_->RemoveUser(this);
512 } 512 }
513 513
514 void UserController::SelectUserRelative(int shift) { 514 void UserController::SelectUserRelative(int shift) {
515 delegate_->SelectUser(user_index() + shift); 515 delegate_->SelectUser(user_index() + shift);
516 } 516 }
517 517
518 } // namespace chromeos 518 } // namespace chromeos
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/user_controller.h ('k') | chrome/browser/chromeos/login/user_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698